From 72c12b6735ee510934fa5909123edd033deb5cb7 Mon Sep 17 00:00:00 2001 From: Alexander Medvednikov Date: Fri, 25 Jun 2021 20:15:27 +0300 Subject: [PATCH] Revert "v.gen.c: remove unused memfreedup" This reverts commit 6333adad237dd41428caf9f1e88e841aee161893. --- vlib/v/gen/c/cheaders.v | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/vlib/v/gen/c/cheaders.v b/vlib/v/gen/c/cheaders.v index 462ae00572..f16725e5dd 100644 --- a/vlib/v/gen/c/cheaders.v +++ b/vlib/v/gen/c/cheaders.v @@ -273,6 +273,10 @@ 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 @@ -467,6 +471,10 @@ 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); +} '