AFL_IGNORE_SEED_PROBLEMS

This commit is contained in:
vanhauser-thc
2023-08-23 18:02:33 +02:00
parent d95cef8273
commit 549e5dd926
7 changed files with 59 additions and 16 deletions

View File

@ -316,6 +316,13 @@ void read_afl_environment(afl_state_t *afl, char **envp) {
afl->afl_env.afl_ignore_problems =
get_afl_env(afl_environment_variables[i]) ? 1 : 0;
} else if (!strncmp(env, "AFL_IGNORE_SEED_PROBLEMS",
afl_environment_variable_len)) {
afl->afl_env.afl_ignore_seed_problems =
get_afl_env(afl_environment_variables[i]) ? 1 : 0;
} else if (!strncmp(env, "AFL_IGNORE_TIMEOUTS",
afl_environment_variable_len)) {