mirror of
https://github.com/AFLplusplus/AFLplusplus.git
synced 2025-06-14 19:08:08 +00:00
fix include
This commit is contained in:
@ -48,7 +48,7 @@ static char *afl_environment_variables[] = {
|
|||||||
"AFL_EXIT_WHEN_DONE",
|
"AFL_EXIT_WHEN_DONE",
|
||||||
"AFL_FAST_CAL",
|
"AFL_FAST_CAL",
|
||||||
"AFL_FORCE_UI",
|
"AFL_FORCE_UI",
|
||||||
"AFL_FUZZER_ARGS". // oss-fuzz
|
"AFL_FUZZER_ARGS", // oss-fuzz
|
||||||
"AFL_GCC_ALLOWLIST",
|
"AFL_GCC_ALLOWLIST",
|
||||||
"AFL_GCC_DENYLIST",
|
"AFL_GCC_DENYLIST",
|
||||||
"AFL_GCC_BLOCKLIST",
|
"AFL_GCC_BLOCKLIST",
|
||||||
|
@ -482,9 +482,8 @@ void read_foreign_testcases(afl_state_t *afl, int first) {
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/* We use scandir() + alphasort() rather than readdir() because otherwise,
|
/* We do not use sorting yet and do a more expensive ctime check instead.
|
||||||
the ordering of test cases would vary somewhat randomly and would be
|
a ctimesort() implementation would be better though. */
|
||||||
difficult to control. */
|
|
||||||
|
|
||||||
nl_cnt = scandir(afl->foreign_syncs[iter].dir, &nl, NULL, NULL);
|
nl_cnt = scandir(afl->foreign_syncs[iter].dir, &nl, NULL, NULL);
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user