From 3fe51611904351668b6c22cba02c91aa6fbfdd27 Mon Sep 17 00:00:00 2001 From: Richard Knight Date: Sun, 19 May 2019 12:02:41 +0100 Subject: [PATCH] Make sure redefined free callback is actually used --- fast_obj.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fast_obj.h b/fast_obj.h index 213778d..02a9202 100644 --- a/fast_obj.h +++ b/fast_obj.h @@ -169,7 +169,7 @@ void* memory_realloc(void* ptr, size_t bytes) static void memory_dealloc(void* ptr) { - free(ptr); + FAST_OBJ_FREE(ptr); }