not allocating paths anymore

This commit is contained in:
Dominik Maier
2020-03-27 23:06:57 +01:00
parent 14bd424d2a
commit 02659df6ba
4 changed files with 40 additions and 46 deletions

View File

@ -349,6 +349,13 @@ void read_afl_environment(afl_state_t *afl, char **envp) {
void afl_state_deinit(afl_state_t *afl) {
free(afl->out_buf);
free(afl->out_scratch_buf);
free(afl->eff_buf);
free(afl->in_buf);
free(afl->in_scratch_buf);
free(afl->ex_buf);
list_remove(&afl_states, afl);
}