diff options
author | van Hauser <vh@thc.org> | 2020-10-23 15:21:21 +0200 |
---|---|---|
committer | van Hauser <vh@thc.org> | 2020-10-23 15:21:21 +0200 |
commit | aa0d3785206d52c1815aff850817d55bf50f3598 (patch) | |
tree | ecb8ad161e40aa702b091da469a5b7126967e149 /src/afl-fuzz-state.c | |
parent | 0e748ccda713708de6a501d23a58788aba9d0b03 (diff) | |
download | afl++-aa0d3785206d52c1815aff850817d55bf50f3598.tar.gz |
better cache entry algo
Diffstat (limited to 'src/afl-fuzz-state.c')
-rw-r--r-- | src/afl-fuzz-state.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/afl-fuzz-state.c b/src/afl-fuzz-state.c index ae7d410b..3ce16cad 100644 --- a/src/afl-fuzz-state.c +++ b/src/afl-fuzz-state.c @@ -104,7 +104,7 @@ void afl_state_init(afl_state_t *afl, uint32_t map_size) { afl->skip_deterministic = 1; afl->use_splicing = 1; afl->q_testcase_max_cache_size = TESTCASE_CACHE_SIZE * 1048576UL; - afl->q_testcase_max_cache_entries = 4096; + afl->q_testcase_max_cache_entries = 64 * 1024; #ifdef HAVE_AFFINITY afl->cpu_aff = -1; /* Selected CPU core */ |