mirror of
https://github.com/AFLplusplus/AFLplusplus.git
synced 2025-06-16 03:48:08 +00:00
fix missing trace_mini check
This commit is contained in:
@ -973,7 +973,8 @@ void cull_queue(afl_state_t *afl) {
|
||||
|
||||
for (i = 0; i < afl->fsrv.map_size; ++i) {
|
||||
|
||||
if (afl->top_rated[i] && (temp_v[i >> 3] & (1 << (i & 7)))) {
|
||||
if (afl->top_rated[i] && (temp_v[i >> 3] & (1 << (i & 7))) &&
|
||||
afl->top_rated[i]->trace_mini) {
|
||||
|
||||
u32 j = len;
|
||||
|
||||
|
Reference in New Issue
Block a user