about summary refs log tree commit diff
path: root/src/afl-fuzz-init.c
diff options
context:
space:
mode:
authorhexcoder- <heiko@hexco.de>2020-03-14 11:45:25 +0100
committerhexcoder- <heiko@hexco.de>2020-03-14 11:45:25 +0100
commit338daa12825b65c386c006f2e106c12b6c267480 (patch)
tree7bfc7f0192cb84388ab945ae27e6041ca751c8bb /src/afl-fuzz-init.c
parentc616fcafe8e5321ae247c3dc316aa7f2dbd97f7c (diff)
parent08fe1e2cd7388399fc44a5217f4ca5e3fc8f84d3 (diff)
downloadafl++-338daa12825b65c386c006f2e106c12b6c267480.tar.gz
Merge branch 'master' of https://github.com/vanhauser-thc/AFLplusplus
Diffstat (limited to 'src/afl-fuzz-init.c')
-rw-r--r--src/afl-fuzz-init.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/afl-fuzz-init.c b/src/afl-fuzz-init.c
index 1db5c0ef..c5ee2f80 100644
--- a/src/afl-fuzz-init.c
+++ b/src/afl-fuzz-init.c
@@ -373,7 +373,7 @@ void read_testcases(afl_state_t *afl) {
 
     u8 passed_det = 0;
 
-    ck_free(nl[i]);                                          /* not tracked */
+    free(nl[i]);                                             /* not tracked */
 
     if (lstat(fn2, &st) || access(fn2, R_OK))
       PFATAL("Unable to access '%s'", fn2);
@@ -404,7 +404,7 @@ void read_testcases(afl_state_t *afl) {
 
   }
 
-  ck_free(nl);                                               /* not tracked */
+  free(nl);                                                  /* not tracked */
 
   if (!afl->queued_paths) {