diff options
author | Andrea Fioraldi <andreafioraldi@gmail.com> | 2020-07-16 14:32:41 +0200 |
---|---|---|
committer | Andrea Fioraldi <andreafioraldi@gmail.com> | 2020-07-16 14:32:41 +0200 |
commit | c2b04bdf6c596f5d220f27caead20d09452ed42d (patch) | |
tree | 602abd8c1a1929aebda3f80665ffe02b435fdd00 /src/afl-fuzz-state.c | |
parent | 6513bca07e590024480a95de8c57c9547987032d (diff) | |
download | afl++-c2b04bdf6c596f5d220f27caead20d09452ed42d.tar.gz |
queue buffer and new splice havoc mutation
Diffstat (limited to 'src/afl-fuzz-state.c')
-rw-r--r-- | src/afl-fuzz-state.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/afl-fuzz-state.c b/src/afl-fuzz-state.c index e0e43f54..e56d122a 100644 --- a/src/afl-fuzz-state.c +++ b/src/afl-fuzz-state.c @@ -405,6 +405,7 @@ void afl_state_deinit(afl_state_t *afl) { if (afl->pass_stats) { ck_free(afl->pass_stats); } if (afl->orig_cmp_map) { ck_free(afl->orig_cmp_map); } + if (afl->queue_buf) { free(afl->queue_buf); } if (afl->out_buf) { free(afl->out_buf); } if (afl->out_scratch_buf) { free(afl->out_scratch_buf); } if (afl->eff_buf) { free(afl->eff_buf); } |