diff options
author | h1994st <h1994st@gmail.com> | 2020-03-06 16:28:26 -0500 |
---|---|---|
committer | h1994st <h1994st@gmail.com> | 2020-03-06 16:28:26 -0500 |
commit | a10a3f2fa75f16bf7781a3c02cd23eab7164cff1 (patch) | |
tree | 653138ebd36b80fd9fd3faa31eedd8666e185135 /examples/custom_mutators | |
parent | 9e5c4973eb8f9b2f007bb1fe10976a4634c0ea6a (diff) | |
parent | 2287534ec6dd68b06a5052caa4ab3305d15861ec (diff) | |
download | afl++-a10a3f2fa75f16bf7781a3c02cd23eab7164cff1.tar.gz |
Merge branch 'master' of https://github.com/vanhauser-thc/AFLplusplus
Diffstat (limited to 'examples/custom_mutators')
-rw-r--r-- | examples/custom_mutators/example.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/examples/custom_mutators/example.c b/examples/custom_mutators/example.c index 737cf631..5aaa6a5d 100644 --- a/examples/custom_mutators/example.c +++ b/examples/custom_mutators/example.c @@ -89,10 +89,10 @@ size_t afl_custom_pre_save(uint8_t *buf, size_t buf_size, uint8_t **out_buf) { } -static uint8_t *trim_buf; -static size_t trim_buf_size; -static int trimmming_steps; -static int cur_step; +uint8_t *trim_buf; +size_t trim_buf_size; +int trimmming_steps; +int cur_step; /** * This method is called at the start of each trimming operation and receives |