diff options
author | van Hauser <vh@thc.org> | 2020-06-25 08:50:34 +0200 |
---|---|---|
committer | van Hauser <vh@thc.org> | 2020-06-25 08:50:34 +0200 |
commit | 15dd4ad177b4822ad25eaec26897bb55e5cd5785 (patch) | |
tree | 79e7369e4b98694580a378540facd258f9f13adf /src/afl-fuzz-stats.c | |
parent | 1d7c76d14153d0bcb03b360e9c78f1ca1317d643 (diff) | |
download | afl++-15dd4ad177b4822ad25eaec26897bb55e5cd5785.tar.gz |
fix plot
Diffstat (limited to 'src/afl-fuzz-stats.c')
-rw-r--r-- | src/afl-fuzz-stats.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/afl-fuzz-stats.c b/src/afl-fuzz-stats.c index 28473c0c..3fb0fdf5 100644 --- a/src/afl-fuzz-stats.c +++ b/src/afl-fuzz-stats.c @@ -194,7 +194,7 @@ void maybe_update_plot_file(afl_state_t *afl, double bitmap_cvg, double eps) { afl->plot_prev_uc == afl->unique_crashes && afl->plot_prev_uh == afl->unique_hangs && afl->plot_prev_md == afl->max_depth) || - unlikely(!afl->queue_cycle)) { + unlikely(!afl->queue_cycle) || unlikely(get_cur_time() - afl->start_time <= 60)) { return; |