From a85f0c0ef97135476292ee63e72a8fa365adea73 Mon Sep 17 00:00:00 2001 From: 5angjun Date: Sun, 30 Mar 2025 04:28:51 +0900 Subject: [PATCH] Add skip routine before writing det_plot_file --- src/afl-fuzz-stats.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/afl-fuzz-stats.c b/src/afl-fuzz-stats.c index 20da0434..8c13cd65 100644 --- a/src/afl-fuzz-stats.c +++ b/src/afl-fuzz-stats.c @@ -604,6 +604,8 @@ void maybe_update_plot_file(afl_state_t *afl, u32 t_bytes, double bitmap_cvg, void plot_profile_data(afl_state_t *afl, struct queue_entry *q) { + if (afl->skip_deterministic) { return; } + u64 current_ms = get_cur_time() - afl->start_time; u32 current_edges = count_non_255_bytes(afl, afl->virgin_bits);