diff options
author | van Hauser <vh@thc.org> | 2021-02-01 12:07:13 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-01 12:07:13 +0100 |
commit | bca4026f62671535b53dedc67d6b3e2d646b6a6d (patch) | |
tree | ebcdf5418ccbfc597252c61d3013970beca822b2 | |
parent | 965b854803b67f952406d31353d4cb8ed26eeee6 (diff) | |
parent | 8a8ecef6f5a11f3b8b7e43ad7232751aeecc6635 (diff) | |
download | afl++-bca4026f62671535b53dedc67d6b3e2d646b6a6d.tar.gz |
Merge pull request #718 from AFLplusplus/cmplog_lowfail
cmplog lower fail
-rw-r--r-- | src/afl-fuzz-redqueen.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/afl-fuzz-redqueen.c b/src/afl-fuzz-redqueen.c index d7657c1d..74c9db38 100644 --- a/src/afl-fuzz-redqueen.c +++ b/src/afl-fuzz-redqueen.c @@ -2448,8 +2448,8 @@ u8 input_to_state_stage(afl_state_t *afl, u8 *orig_buf, u8 *buf, u32 len) { if (!afl->shm.cmp_map->headers[k].hits) { continue; } - if (afl->pass_stats[k].faileds == 0xff || - afl->pass_stats[k].total == 0xff) { + if (afl->pass_stats[k].faileds >= 0x69 || + afl->pass_stats[k].total >= 0x69) { #ifdef _DEBUG fprintf(stderr, "DISABLED %u\n", k); |