diff options
author | van Hauser <vh@thc.org> | 2024-05-11 09:16:21 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-11 09:16:21 +0200 |
commit | 90fbf59bf16f057e50132b81be759414787ce1a3 (patch) | |
tree | e57ec2ff73da06776f6cf9c20eb907a8c5aebf05 /src/afl-fuzz-state.c | |
parent | ad0d0c77fb313e6edfee111fecf2bcd16d8f915e (diff) | |
parent | 93c7cbd49603c1a256caf3ab6e971c9f4e40bab4 (diff) | |
download | afl++-90fbf59bf16f057e50132b81be759414787ce1a3.tar.gz |
Merge pull request #2084 from AFLplusplus/dev
push to stable
Diffstat (limited to 'src/afl-fuzz-state.c')
-rw-r--r-- | src/afl-fuzz-state.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/afl-fuzz-state.c b/src/afl-fuzz-state.c index c21ae6be..543fdc1c 100644 --- a/src/afl-fuzz-state.c +++ b/src/afl-fuzz-state.c @@ -293,6 +293,13 @@ void read_afl_environment(afl_state_t *afl, char **envp) { afl->afl_env.afl_cmplog_only_new = get_afl_env(afl_environment_variables[i]) ? 1 : 0; + } else if (!strncmp(env, "AFL_DISABLE_REDUNDANT", + + afl_environment_variable_len)) { + + afl->afl_env.afl_disable_redundant = + get_afl_env(afl_environment_variables[i]) ? 1 : 0; + } else if (!strncmp(env, "AFL_NO_STARTUP_CALIBRATION", afl_environment_variable_len)) { |