mirror of
https://github.com/AFLplusplus/AFLplusplus.git
synced 2025-06-15 11:28:08 +00:00
fix mem leak
This commit is contained in:
@ -592,6 +592,7 @@ void afl_state_deinit(afl_state_t *afl) {
|
|||||||
if (afl->sync_id) { ck_free(afl->out_dir); }
|
if (afl->sync_id) { ck_free(afl->out_dir); }
|
||||||
if (afl->pass_stats) { ck_free(afl->pass_stats); }
|
if (afl->pass_stats) { ck_free(afl->pass_stats); }
|
||||||
if (afl->orig_cmp_map) { ck_free(afl->orig_cmp_map); }
|
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->queue_buf);
|
||||||
afl_free(afl->out_buf);
|
afl_free(afl->out_buf);
|
||||||
|
Reference in New Issue
Block a user