Skip to content

Commit 15dd4ad

Browse files
committed
fix plot
1 parent 1d7c76d commit 15dd4ad

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/afl-fuzz-stats.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ void maybe_update_plot_file(afl_state_t *afl, double bitmap_cvg, double eps) {
194194
afl->plot_prev_uc == afl->unique_crashes &&
195195
afl->plot_prev_uh == afl->unique_hangs &&
196196
afl->plot_prev_md == afl->max_depth) ||
197-
unlikely(!afl->queue_cycle)) {
197+
unlikely(!afl->queue_cycle) || unlikely(get_cur_time() - afl->start_time <= 60)) {
198198

199199
return;
200200

0 commit comments

Comments
 (0)