diff options
author | van Hauser <vh@thc.org> | 2020-09-08 17:15:32 +0200 |
---|---|---|
committer | van Hauser <vh@thc.org> | 2020-09-08 17:15:32 +0200 |
commit | 2802245da77062cdadb7d4ceb09d3d083761cf56 (patch) | |
tree | 483a883cfe60dfff09e01c7ff5db36170226690e /src/afl-fuzz-mutators.c | |
parent | c091340a85694c5de1125a93366f2733959487f5 (diff) | |
download | afl++-2802245da77062cdadb7d4ceb09d3d083761cf56.tar.gz |
update instrumenation/README.instrument_file.md for gcc_plugin
Diffstat (limited to 'src/afl-fuzz-mutators.c')
-rw-r--r-- | src/afl-fuzz-mutators.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/afl-fuzz-mutators.c b/src/afl-fuzz-mutators.c index d24b7db9..c4d7233c 100644 --- a/src/afl-fuzz-mutators.c +++ b/src/afl-fuzz-mutators.c @@ -93,9 +93,9 @@ void setup_custom_mutators(afl_state_t *afl) { } - struct custom_mutator *mutator = load_custom_mutator_py(afl, module_name); + struct custom_mutator *m = load_custom_mutator_py(afl, module_name); afl->custom_mutators_count++; - list_append(&afl->custom_mutator_list, mutator); + list_append(&afl->custom_mutator_list, m); } |