From 253bbf3a5c4323c33952f0408df6afbcd9310603 Mon Sep 17 00:00:00 2001 From: Dominik Maier Date: Mon, 9 Mar 2020 19:36:02 +0100 Subject: [PATCH] replaced free with ck_free --- include/afl-prealloc.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/afl-prealloc.h b/include/afl-prealloc.h index aabb04ed..02de0344 100644 --- a/include/afl-prealloc.h +++ b/include/afl-prealloc.h @@ -123,7 +123,7 @@ typedef enum prealloc_status { case PRE_STATUS_MALLOC: { \ \ (el_ptr)->pre_status = PRE_STATUS_UNUSED; \ - free((el_ptr)); \ + ck_free((el_ptr)); \ break; \ \ } \