diff options
author | vanhauser-thc <vh@thc.org> | 2021-07-15 15:53:22 +0200 |
---|---|---|
committer | vanhauser-thc <vh@thc.org> | 2021-07-15 15:53:22 +0200 |
commit | 8d873357a3e62a70c61564b4250e1d14d634c218 (patch) | |
tree | b9eb48815bf9a7add91d68c5e66838dae6f8479a | |
parent | 8a2b140f406acc44bfa48574eb0440cfc92b462f (diff) | |
download | afl++-8d873357a3e62a70c61564b4250e1d14d634c218.tar.gz |
fix "fix"
m--------- | custom_mutators/grammar_mutator/grammar_mutator | 0 | ||||
m--------- | qemu_mode/qemuafl | 0 | ||||
-rw-r--r-- | src/afl-fuzz-mutators.c | 2 |
3 files changed, 1 insertions, 1 deletions
diff --git a/custom_mutators/grammar_mutator/grammar_mutator b/custom_mutators/grammar_mutator/grammar_mutator -Subproject b3c4fcfa6ae28918bc410f7747135eafd4fb726 +Subproject b79d51a8daccbd7a693f9b6765c81ead14f28e2 diff --git a/qemu_mode/qemuafl b/qemu_mode/qemuafl -Subproject 21ff34383764a8c6f66509b3b8d5282468c721e +Subproject d73b0336b451fd034e5f469089fb7ee96c80adf diff --git a/src/afl-fuzz-mutators.c b/src/afl-fuzz-mutators.c index 6a77dfbc..e27d6fae 100644 --- a/src/afl-fuzz-mutators.c +++ b/src/afl-fuzz-mutators.c @@ -339,7 +339,7 @@ u8 trim_case_custom(afl_state_t *afl, struct queue_entry *q, u8 *in_buf, } - while (afl->stage_cur <= afl->stage_max) { + while (afl->stage_cur < afl->stage_max) { u8 *retbuf = NULL; |