mirror of
https://github.com/AFLplusplus/AFLplusplus.git
synced 2025-06-11 01:31:37 +00:00
Merge pull request #707 from ampanasiuk/bug-703-wrong-src-attribute-in-sync-stage-filenames
Bug 703 wrong src attribute in sync stage filenames
This commit is contained in:
commit
6b721900d5
@ -627,9 +627,8 @@ void sync_fuzzers(afl_state_t *afl) {
|
||||
}
|
||||
|
||||
if (m >= n) { goto close_sync; } // nothing new
|
||||
o = n - 1;
|
||||
|
||||
while (o >= m) {
|
||||
for (o = m; o < n; o++) {
|
||||
|
||||
s32 fd;
|
||||
struct stat st;
|
||||
@ -637,7 +636,6 @@ void sync_fuzzers(afl_state_t *afl) {
|
||||
snprintf(path, sizeof(path), "%s/%s", qd_path, namelist[o]->d_name);
|
||||
afl->syncing_case = next_min_accept;
|
||||
next_min_accept++;
|
||||
o--;
|
||||
|
||||
/* Allow this to fail in case the other fuzzer is resuming or so... */
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user