diff options
author | vanhauser-thc <vh@thc.org> | 2020-09-05 12:32:10 +0200 |
---|---|---|
committer | vanhauser-thc <vh@thc.org> | 2020-09-05 12:32:10 +0200 |
commit | 4b3ad5f037ee9a36aa057bf55a69acca1f573922 (patch) | |
tree | 80887d673817863f3964b5cdb1f8f00347fc6290 /include/afl-fuzz.h | |
parent | 996986bed5f2dd97a3d76f584d8eddc1203f8396 (diff) | |
download | afl++-4b3ad5f037ee9a36aa057bf55a69acca1f573922.tar.gz |
add cull queue, -i subdir traversal
Diffstat (limited to 'include/afl-fuzz.h')
-rw-r--r-- | include/afl-fuzz.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/include/afl-fuzz.h b/include/afl-fuzz.h index 1a05f4f4..4281c554 100644 --- a/include/afl-fuzz.h +++ b/include/afl-fuzz.h @@ -162,8 +162,7 @@ struct queue_entry { u8 *trace_mini; /* Trace bytes, if kept */ u32 tc_ref; /* Trace bytes ref count */ - struct queue_entry *next, /* Next element, if any */ - *next_100; /* 100 elements ahead */ + struct queue_entry *next; /* Next element, if any */ }; @@ -575,8 +574,7 @@ typedef struct afl_state { struct queue_entry *queue, /* Fuzzing queue (linked list) */ *queue_cur, /* Current offset within the queue */ - *queue_top, /* Top of the list */ - *q_prev100; /* Previous 100 marker */ + *queue_top; /* Top of the list */ // growing buf struct queue_entry **queue_buf; |