diff options
author | van Hauser <vh@thc.org> | 2023-11-07 10:40:45 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-07 10:40:45 +0100 |
commit | f7d19390fbcdf774276662d0785c5abc663d5475 (patch) | |
tree | 1d0d28366d0afd7296bdb51d3612c357a6a57473 /src | |
parent | ac0ad563480e3bf1fb69349e960b7957fffe75df (diff) | |
parent | 8ad36af95d9bcfa172d217f0f8ca29c6b24ba78a (diff) | |
download | afl++-f7d19390fbcdf774276662d0785c5abc663d5475.tar.gz |
Merge pull request #1902 from m-carrasco/dev-cm-init-fix
Possible missing initialisation in custom mutator
Diffstat (limited to 'src')
-rw-r--r-- | src/afl-fuzz-one.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/afl-fuzz-one.c b/src/afl-fuzz-one.c index b2306996..67dafda8 100644 --- a/src/afl-fuzz-one.c +++ b/src/afl-fuzz-one.c @@ -1894,6 +1894,7 @@ custom_mutator_stage: LIST_FOREACH(&afl->custom_mutator_list, struct custom_mutator, { if (el->afl_custom_fuzz) { + havoc_queued = afl->queued_items; afl->current_custom_fuzz = el; afl->stage_name = el->name_short; |