about summary refs log tree commit diff
path: root/src/afl-fuzz-stats.c
diff options
context:
space:
mode:
authorAndrea Fioraldi <andreafioraldi@gmail.com>2021-02-25 10:42:39 +0100
committerAndrea Fioraldi <andreafioraldi@gmail.com>2021-02-25 10:42:39 +0100
commit6c9777de13ebd9a8c1cd20c2124aff7e4e31d579 (patch)
tree0d943cce5d82a1a14fddde12c67f9ec62309ffeb /src/afl-fuzz-stats.c
parent2f7e57f6aa4f09d0b6f55b6592fbd70d2c2c1064 (diff)
downloadafl++-6c9777de13ebd9a8c1cd20c2124aff7e4e31d579.tar.gz
edges in afl-plot
Diffstat (limited to 'src/afl-fuzz-stats.c')
-rw-r--r--src/afl-fuzz-stats.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/afl-fuzz-stats.c b/src/afl-fuzz-stats.c
index 192fdd62..42c71b05 100644
--- a/src/afl-fuzz-stats.c
+++ b/src/afl-fuzz-stats.c
@@ -355,7 +355,8 @@ void write_stats_file(afl_state_t *afl, u32 t_bytes, double bitmap_cvg,
 void maybe_update_plot_file(afl_state_t *afl, u32 t_bytes, double bitmap_cvg,
                             double eps) {
 
-  if (unlikely(afl->plot_prev_qp == afl->queued_paths &&
+  if (unlikely(afl->stop_soon) ||
+      unlikely(afl->plot_prev_qp == afl->queued_paths &&
                afl->plot_prev_pf == afl->pending_favored &&
                afl->plot_prev_pnf == afl->pending_not_fuzzed &&
                afl->plot_prev_ce == afl->current_entry &&