diff options
author | hexcoder- <heiko@hexco.de> | 2019-09-07 11:20:36 +0200 |
---|---|---|
committer | hexcoder- <heiko@hexco.de> | 2019-09-07 11:20:36 +0200 |
commit | b82ff2d7e7d671d24f1fb86b8159942355f87df3 (patch) | |
tree | 4febea74573a60606bf1f23c8805b45a4fd67349 /src/afl-fuzz-one.c | |
parent | efa205289662db40382f9c2a4e83420438419bba (diff) | |
download | afl++-b82ff2d7e7d671d24f1fb86b8159942355f87df3.tar.gz |
prefer preincrement over postincrement
Diffstat (limited to 'src/afl-fuzz-one.c')
-rw-r--r-- | src/afl-fuzz-one.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/afl-fuzz-one.c b/src/afl-fuzz-one.c index 9a7a5938..9c9d6b90 100644 --- a/src/afl-fuzz-one.c +++ b/src/afl-fuzz-one.c @@ -3030,7 +3030,7 @@ skip_bitflip: *(u32*)(out_buf + i) = orig - j; if (common_fuzz_stuff(argv, out_buf, len)) goto abandon_entry; - stage_cur++; + ++stage_cur; } else |