diff options
author | Andrea Fioraldi <andreafioraldi@gmail.com> | 2020-04-14 10:11:22 +0200 |
---|---|---|
committer | Andrea Fioraldi <andreafioraldi@gmail.com> | 2020-04-14 10:11:22 +0200 |
commit | 982d46e7cb2c7cabcd8969e6303c3cb8f3d8e56a (patch) | |
tree | f8768002211d8531c226adab51751be87c6f7bce /include | |
parent | 5daec436f93240a0c411d432456f3f86fe1f3181 (diff) | |
parent | 1fbface656ae4f64fc8643def840fa488098e580 (diff) | |
download | afl++-982d46e7cb2c7cabcd8969e6303c3cb8f3d8e56a.tar.gz |
solve conflicts
Diffstat (limited to 'include')
-rw-r--r-- | include/afl-fuzz.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/include/afl-fuzz.h b/include/afl-fuzz.h index 1440b645..6cfb34ca 100644 --- a/include/afl-fuzz.h +++ b/include/afl-fuzz.h @@ -340,6 +340,10 @@ typedef struct afl_env_vars { } afl_env_vars_t; +struct afl_pass_stat { + u8 total; u8 faileds; +}; + typedef struct afl_state { /* Position of this state in the global states list */ @@ -569,6 +573,8 @@ typedef struct afl_state { s32 cmplog_fsrv_ctl_fd, cmplog_fsrv_st_fd; u32 cmplog_prev_timed_out; + struct afl_pass_stat* pass_stats; + u8 describe_op_buf_256[256]; /* describe_op will use this to return a string up to 256 */ |