diff options
author | vanhauser-thc <vh@thc.org> | 2022-02-08 20:15:48 +0100 |
---|---|---|
committer | vanhauser-thc <vh@thc.org> | 2022-02-08 20:15:48 +0100 |
commit | cf853fb2494912a1c4b531ffcf302843266639b7 (patch) | |
tree | 136fb71b40254cf04f8605ee4bf4638de6974fbe /src/afl-fuzz-state.c | |
parent | fa628865c1d3b8d0cc4bc04efc516fc7b48b6a69 (diff) | |
download | afl++-cf853fb2494912a1c4b531ffcf302843266639b7.tar.gz |
reintroduce AFL_PERSISTENT and AFL_DEFER_FORKSRV
Diffstat (limited to 'src/afl-fuzz-state.c')
-rw-r--r-- | src/afl-fuzz-state.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/afl-fuzz-state.c b/src/afl-fuzz-state.c index 115e62de..129e4c8b 100644 --- a/src/afl-fuzz-state.c +++ b/src/afl-fuzz-state.c @@ -486,15 +486,15 @@ void read_afl_environment(afl_state_t *afl, char **envp) { afl_environment_variable_len)) { - afl->min_length = atoi( - (u8 *)get_afl_env(afl_environment_variables[i])); + afl->min_length = + atoi((u8 *)get_afl_env(afl_environment_variables[i])); } else if (!strncmp(env, "AFL_INPUT_LEN_MAX", afl_environment_variable_len)) { - afl->max_length = atoi( - (u8 *)get_afl_env(afl_environment_variables[i])); + afl->max_length = + atoi((u8 *)get_afl_env(afl_environment_variables[i])); } |