diff options
author | van Hauser <vh@thc.org> | 2019-11-20 15:04:44 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-11-20 15:04:44 +0100 |
commit | 79490e75beefdfc737129112ecbc9c74bf4a4609 (patch) | |
tree | ee0963105de36823167703025973fa581001f628 /src/afl-fuzz.c | |
parent | d96b27b603f9f4c16330f24bea267ca0deeb6f61 (diff) | |
parent | e8b576fb9f92119437b018c50eef5121c5e1d997 (diff) | |
download | afl++-79490e75beefdfc737129112ecbc9c74bf4a4609.tar.gz |
Merge pull request #113 from devnexen/empty_plot_values_when_exec_stop
the plot data does not generate proper gnuplot data
Diffstat (limited to 'src/afl-fuzz.c')
-rw-r--r-- | src/afl-fuzz.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/afl-fuzz.c b/src/afl-fuzz.c index 9b5d6a1c..42bdaebd 100644 --- a/src/afl-fuzz.c +++ b/src/afl-fuzz.c @@ -838,6 +838,7 @@ int main(int argc, char** argv) { seek_to = find_start_position(); write_stats_file(0, 0, 0); + maybe_update_plot_file(0, 0); save_auto(); if (stop_soon) goto stop_fuzzing; @@ -970,6 +971,7 @@ int main(int argc, char** argv) { write_bitmap(); write_stats_file(0, 0, 0); + maybe_update_plot_file(0, 0); save_auto(); stop_fuzzing: |