mirror of
https://github.com/AFLplusplus/AFLplusplus.git
synced 2025-06-10 17:21:33 +00:00
efficient queue jump
This commit is contained in:
parent
794e8d2d67
commit
c12b98e0a4
@ -1331,11 +1331,11 @@ int main(int argc, char **argv_orig, char **envp) {
|
||||
afl->cur_skipped_paths = 0;
|
||||
afl->queue_cur = afl->queue;
|
||||
|
||||
while (seek_to) {
|
||||
if (seek_to) {
|
||||
|
||||
++afl->current_entry;
|
||||
--seek_to;
|
||||
afl->queue_cur = afl->queue_cur->next;
|
||||
afl->current_entry = seek_to;
|
||||
afl->queue_cur = afl->queue_buf[seek_to];
|
||||
seek_to = 0;
|
||||
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user