diff options
author | van Hauser <vh@thc.org> | 2020-11-01 21:34:08 +0100 |
---|---|---|
committer | van Hauser <vh@thc.org> | 2020-11-01 21:34:08 +0100 |
commit | 0fd98ae8b070b05a72b2c47a76f4ea145f9d51c2 (patch) | |
tree | 67b81c3ebc89ee3745edba2acd436908e3ca9b78 /include/afl-fuzz.h | |
parent | a0c0cf97129cc42b98c3ac65aeb9c2ca81db899f (diff) | |
download | afl++-0fd98ae8b070b05a72b2c47a76f4ea145f9d51c2.tar.gz |
added mutation introspection make target
Diffstat (limited to 'include/afl-fuzz.h')
-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 85b31795..5ff7672b 100644 --- a/include/afl-fuzz.h +++ b/include/afl-fuzz.h @@ -717,6 +717,12 @@ typedef struct afl_state { * is too large) */ struct queue_entry **q_testcase_cache; +#ifdef INTROSPECTION + char mutation[8072]; + char m_tmp[4096]; + FILE *introspection_file; +#endif + } afl_state_t; struct custom_mutator { |