diff options
author | van Hauser <vh@thc.org> | 2023-10-23 09:14:18 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-23 09:14:18 +0200 |
commit | 85c5b5218c6a7b2289f309fbd1625a5d0a602a00 (patch) | |
tree | 148f0c2c459c972f56a7a8f5bef3d5205aaf6d83 /include | |
parent | d09950f4bb98431576b872436f0fbf773ab895db (diff) | |
parent | eaa6a1754a2efa54903959a5b3ce3d433dcdea37 (diff) | |
download | afl++-85c5b5218c6a7b2289f309fbd1625a5d0a602a00.tar.gz |
Merge pull request #1896 from AFLplusplus/dev
push to stable
Diffstat (limited to 'include')
-rw-r--r-- | include/envs.h | 1 | ||||
-rw-r--r-- | include/forkserver.h | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/include/envs.h b/include/envs.h index 4259d6dd..734b1707 100644 --- a/include/envs.h +++ b/include/envs.h @@ -179,6 +179,7 @@ static char *afl_environment_variables[] = { "AFL_NO_COLOUR", #endif "AFL_NO_CPU_RED", + "AFL_NO_CFG_FUZZING", // afl.rs rust crate option "AFL_NO_CRASH_README", "AFL_NO_FORKSRV", "AFL_NO_UI", diff --git a/include/forkserver.h b/include/forkserver.h index 5e498c56..f6230fe8 100644 --- a/include/forkserver.h +++ b/include/forkserver.h @@ -197,6 +197,7 @@ typedef struct afl_forkserver { u32 nyx_id; /* nyx runner id (0 -> master) */ u32 nyx_bind_cpu_id; /* nyx runner cpu id */ char *nyx_aux_string; + u32 nyx_aux_string_len; bool nyx_use_tmp_workdir; char *nyx_tmp_workdir_path; s32 nyx_log_fd; |