diff options
author | vanhauser-thc <vh@thc.org> | 2021-05-25 09:22:50 +0200 |
---|---|---|
committer | vanhauser-thc <vh@thc.org> | 2021-05-25 09:22:50 +0200 |
commit | 8e75adfee5574d6d0dd7fd73e9c0899f3162c964 (patch) | |
tree | f94dd4a28d6a315c810f594533c5ce780922bd5f /src/afl-fuzz-state.c | |
parent | 109383f43830010c36b704c682ee537e6474d25a (diff) | |
download | afl++-8e75adfee5574d6d0dd7fd73e9c0899f3162c964.tar.gz |
AFL_SKIP_CRASHES is obsolete since 3.0
Diffstat (limited to 'src/afl-fuzz-state.c')
-rw-r--r-- | src/afl-fuzz-state.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/afl-fuzz-state.c b/src/afl-fuzz-state.c index c886cb28..046d17d6 100644 --- a/src/afl-fuzz-state.c +++ b/src/afl-fuzz-state.c @@ -206,8 +206,7 @@ void read_afl_environment(afl_state_t *afl, char **envp) { afl_environment_variable_len)) { - afl->afl_env.afl_skip_crashes = - (u8 *)get_afl_env(afl_environment_variables[i]); + // we should mark this obsolete in a few versions } else if (!strncmp(env, "AFL_HANG_TMOUT", |