mirror of
https://github.com/AFLplusplus/AFLplusplus.git
synced 2025-06-22 14:19:02 +00:00
Merge pull request #2337 from 5angjun/stable
Bug Fix: Crash when using INTROSPECTION=1 with -z (skip deterministic)
This commit is contained in:
@ -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);
|
||||||
|
Reference in New Issue
Block a user