mirror of
https://github.com/AFLplusplus/AFLplusplus.git
synced 2025-06-16 03:48:08 +00:00
configurable testcache with malloc (#581)
* cache item number to cache memory size * reload testcase if trimming changed the size * fix splicing selection * slim splicing * import sync fix * write testcache stats to fuzzer_stats * fix new seed selection algo * malloc+read instead of mmap * fix * testcache is configurable now and no reference counts * fixes compilation, test script * fixes * switch TEST_CC to afl-cc in makefile * code format * fix * fix crash * fix crash * fix env help output * remove unnecessary pointer resets * fix endless loop bug * actually use the cache if set * one more fix * increase default cache entries, add default cache size value to config.h Co-authored-by: hexcoder- <heiko@hexco.de>
This commit is contained in:
@ -71,7 +71,7 @@ inline uint64_t rand_next(afl_state_t *afl) {
|
||||
|
||||
inline double rand_next_percent(afl_state_t *afl) {
|
||||
|
||||
return (double)(((double)rand_next(afl)) / (double) 0xffffffffffffffff);
|
||||
return (double)(((double)rand_next(afl)) / (double)0xffffffffffffffff);
|
||||
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user