diff options
author | van Hauser <vh@thc.org> | 2020-08-22 01:30:21 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-22 01:30:21 +0200 |
commit | 42ef1968a530d5fe598d53e93431dfcff3727b4b (patch) | |
tree | fe11282ec4997fd685a5aa8766d4d09aa82b89de /include | |
parent | 572944d7267e3612ef8da17a180bc3d8f1a958a7 (diff) | |
parent | 5ec91fce23ddf3b81076ea4cb4a4553c9c302c3e (diff) | |
download | afl++-42ef1968a530d5fe598d53e93431dfcff3727b4b.tar.gz |
Merge pull request #521 from AFLplusplus/dev
Push to stable to fix wrong free on exit
Diffstat (limited to 'include')
-rw-r--r-- | include/afl-fuzz.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/afl-fuzz.h b/include/afl-fuzz.h index c04ba396..1deeddd3 100644 --- a/include/afl-fuzz.h +++ b/include/afl-fuzz.h @@ -624,7 +624,7 @@ typedef struct afl_state { /* plot file saves from last run */ u32 plot_prev_qp, plot_prev_pf, plot_prev_pnf, plot_prev_ce, plot_prev_md; - u64 plot_prev_qc, plot_prev_uc, plot_prev_uh; + u64 plot_prev_qc, plot_prev_uc, plot_prev_uh, plot_prev_ed; u64 stats_last_stats_ms, stats_last_plot_ms, stats_last_ms, stats_last_execs; double stats_avg_exec; |