diff options
author | Andrea Fioraldi <andreafioraldi@gmail.com> | 2020-09-08 20:58:44 +0200 |
---|---|---|
committer | Andrea Fioraldi <andreafioraldi@gmail.com> | 2020-09-08 20:58:44 +0200 |
commit | eb9f323d7c0252c8cb4229181c8b22dbdf113759 (patch) | |
tree | 4139fd9b343dcdcec9cd8c71a8984d167ed2b00c /src/afl-fuzz-mutators.c | |
parent | fe98e2d760a343938de229a4253a151e3b7f7abb (diff) | |
parent | ab744abc4b3c90bee355807e7b6e40ba86f23e74 (diff) | |
download | afl++-eb9f323d7c0252c8cb4229181c8b22dbdf113759.tar.gz |
Merge branch 'dev' of github.com:vanhauser-thc/AFLplusplus into dev
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); } |