Merge pull request #2337 from 5angjun/stable

Bug Fix: Crash when using INTROSPECTION=1 with -z (skip deterministic)
This commit is contained in:
van Hauser
2025-03-31 16:15:48 +02:00
committed by GitHub

View File

@ -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) { 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; u64 current_ms = get_cur_time() - afl->start_time;
u32 current_edges = count_non_255_bytes(afl, afl->virgin_bits); u32 current_edges = count_non_255_bytes(afl, afl->virgin_bits);