diff options
Diffstat (limited to 'include/afl-prealloc.h')
-rw-r--r-- | include/afl-prealloc.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/afl-prealloc.h b/include/afl-prealloc.h index 02de0344..ab86f0d7 100644 --- a/include/afl-prealloc.h +++ b/include/afl-prealloc.h @@ -32,6 +32,7 @@ #include <string.h> #include "debug.h" +#include "alloc-inl.h" typedef enum prealloc_status { @@ -123,7 +124,7 @@ typedef enum prealloc_status { case PRE_STATUS_MALLOC: { \ \ (el_ptr)->pre_status = PRE_STATUS_UNUSED; \ - ck_free((el_ptr)); \ + DFL_ck_free((el_ptr)); \ break; \ \ } \ |