about summary refs log tree commit diff
path: root/src/afl-fuzz-state.c
diff options
context:
space:
mode:
authorvanhauser-thc <vh@thc.org>2022-02-08 20:15:48 +0100
committervanhauser-thc <vh@thc.org>2022-02-08 20:15:48 +0100
commitcf853fb2494912a1c4b531ffcf302843266639b7 (patch)
tree136fb71b40254cf04f8605ee4bf4638de6974fbe /src/afl-fuzz-state.c
parentfa628865c1d3b8d0cc4bc04efc516fc7b48b6a69 (diff)
downloadafl++-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.c8
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]));
 
           }