mirror of
https://github.com/AFLplusplus/AFLplusplus.git
synced 2025-06-14 19:08:08 +00:00
code-format
This commit is contained in:
@ -27,6 +27,7 @@ sending a mail to <afl-users+subscribe@googlegroups.com>.
|
|||||||
- if determinstic mode is active (-D, or -M without -d) then we sync
|
- if determinstic mode is active (-D, or -M without -d) then we sync
|
||||||
after every queue entry as this can take very long time otherwise
|
after every queue entry as this can take very long time otherwise
|
||||||
- better detection if a target needs a large shared map
|
- better detection if a target needs a large shared map
|
||||||
|
- fix for -Z
|
||||||
- switched to an even faster RNG
|
- switched to an even faster RNG
|
||||||
- added hghwng's patch for faster trace map analysis
|
- added hghwng's patch for faster trace map analysis
|
||||||
- afl-cc
|
- afl-cc
|
||||||
|
@ -1632,8 +1632,11 @@ int main(int argc, char **argv_orig, char **envp) {
|
|||||||
|
|
||||||
afl->current_entry = 0;
|
afl->current_entry = 0;
|
||||||
while (unlikely(afl->queue_buf[afl->current_entry]->disabled)) {
|
while (unlikely(afl->queue_buf[afl->current_entry]->disabled)) {
|
||||||
|
|
||||||
++afl->current_entry;
|
++afl->current_entry;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
afl->queue_cur = afl->queue_buf[afl->current_entry];
|
afl->queue_cur = afl->queue_buf[afl->current_entry];
|
||||||
|
|
||||||
if (unlikely(seek_to)) {
|
if (unlikely(seek_to)) {
|
||||||
|
Reference in New Issue
Block a user