diff options
author | van Hauser <vh@thc.org> | 2021-03-10 19:33:50 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-10 19:33:50 +0100 |
commit | 3bb12b456f0d43bb5e2d9d8f570b7c837666fa09 (patch) | |
tree | dc665456433f2076b36a5825345cad4464df769b /include | |
parent | 2d92bb483ec3a3c0c30d568b432d15e971fc7015 (diff) | |
parent | a10a627622fe9785301fcb033cd1eee69d3f3056 (diff) | |
download | afl++-3bb12b456f0d43bb5e2d9d8f570b7c837666fa09.tar.gz |
Merge pull request #800 from AFLplusplus/dev
push to stable
Diffstat (limited to 'include')
-rw-r--r-- | include/config.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/config.h b/include/config.h index a3aa9a4a..6ada0fbe 100644 --- a/include/config.h +++ b/include/config.h @@ -54,10 +54,10 @@ /* Number of potential positions from which we decide if cmplog becomes useless, default 8096 */ -#define CMPLOG_POSITIONS_MAX 8096U +#define CMPLOG_POSITIONS_MAX (12 * 1024) /* Maximum allowed fails per CMP value. Default: 128 */ -#define CMPLOG_FAIL_MAX 128 +#define CMPLOG_FAIL_MAX 96 /* Now non-cmplog configuration options */ |