diff options
author | rish9101 <rranjan@cs.iitr.ac.in> | 2020-05-13 18:59:12 +0530 |
---|---|---|
committer | rish9101 <rranjan@cs.iitr.ac.in> | 2020-05-13 18:59:12 +0530 |
commit | 9627458ecc61783aa1f8bf76835abe00c4107739 (patch) | |
tree | d489774c83c2e24faf9c44fcde3eb21990679891 /src/afl-fuzz-state.c | |
parent | f8b3d34225102158ed585130e3de08772e989b53 (diff) | |
download | afl++-9627458ecc61783aa1f8bf76835abe00c4107739.tar.gz |
Add post library API as custom mutator and rename pre_save
Diffstat (limited to 'src/afl-fuzz-state.c')
-rw-r--r-- | src/afl-fuzz-state.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/afl-fuzz-state.c b/src/afl-fuzz-state.c index 4f5389e3..316f9bd9 100644 --- a/src/afl-fuzz-state.c +++ b/src/afl-fuzz-state.c @@ -371,7 +371,6 @@ void read_afl_environment(afl_state_t *afl, char **envp) { void afl_state_deinit(afl_state_t *afl) { - if (afl->post_deinit) { afl->post_deinit(afl->post_data); } if (afl->in_place_resume) { ck_free(afl->in_dir); } if (afl->sync_id) { ck_free(afl->out_dir); } if (afl->pass_stats) { ck_free(afl->pass_stats); } |