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 /src/afl-fuzz-mutators.c | |
parent | 8a2b140f406acc44bfa48574eb0440cfc92b462f (diff) | |
download | afl++-8d873357a3e62a70c61564b4250e1d14d634c218.tar.gz |
fix "fix"
Diffstat (limited to 'src/afl-fuzz-mutators.c')
-rw-r--r-- | src/afl-fuzz-mutators.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; |