From e797547d6d313380c00f1ea46d1c989b672f65e4 Mon Sep 17 00:00:00 2001 From: Alexander Medvednikov Date: Fri, 25 Jun 2021 20:29:42 +0300 Subject: [PATCH] Revert "Revert "v.gen.c: remove unused memfreedup"" This reverts commit 72c12b6735ee510934fa5909123edd033deb5cb7. --- vlib/v/gen/c/cheaders.v | 8 -------- 1 file changed, 8 deletions(-) diff --git a/vlib/v/gen/c/cheaders.v b/vlib/v/gen/c/cheaders.v index f16725e5dd..462ae00572 100644 --- a/vlib/v/gen/c/cheaders.v +++ b/vlib/v/gen/c/cheaders.v @@ -273,10 +273,6 @@ void _vcleanup(); void v_free(voidptr ptr); voidptr memdup(voidptr src, int sz); -static voidptr memfreedup(voidptr ptr, voidptr src, int sz) { - v_free(ptr); // heloe - return memdup(src, sz); -} #if INTPTR_MAX == INT32_MAX #define TARGET_IS_32BIT 1 @@ -471,10 +467,6 @@ void _vcleanup(); void v_free(voidptr ptr); voidptr memdup(voidptr src, int sz); -static voidptr memfreedup(voidptr ptr, voidptr src, int sz) { - v_free(ptr); // heloe - return memdup(src, sz); -} '