fix mem leak

This commit is contained in:
che30122
2022-05-17 16:47:01 +08:00
parent 46d5452c86
commit c563faa076

View File

@ -592,6 +592,7 @@ void afl_state_deinit(afl_state_t *afl) {
if (afl->sync_id) { ck_free(afl->out_dir); }
if (afl->pass_stats) { ck_free(afl->pass_stats); }
if (afl->orig_cmp_map) { ck_free(afl->orig_cmp_map); }
if (afl->cmplog_binary) { ck_free(afl->cmplog_binary); }
afl_free(afl->queue_buf);
afl_free(afl->out_buf);