fix memory leaks

This commit is contained in:
Kuang-che Wu
2025-04-13 03:06:06 +00:00
parent 4bd492f212
commit e305bc15d3
2 changed files with 10 additions and 1 deletions

View File

@ -762,6 +762,8 @@ void afl_state_deinit(afl_state_t *afl) {
afl_free(afl->in_buf);
afl_free(afl->in_scratch_buf);
afl_free(afl->ex_buf);
afl_free(afl->alias_table);
afl_free(afl->alias_probability);
ck_free(afl->virgin_bits);
ck_free(afl->virgin_tmout);