mirror of
https://github.com/AFLplusplus/AFLplusplus.git
synced 2025-06-14 11:08:06 +00:00
remove unnecessary code, increase init map size
This commit is contained in:
@ -74,16 +74,12 @@
|
||||
run. It will end up as .comm, so it shouldn't be too wasteful. */
|
||||
|
||||
#if MAP_SIZE <= 65536
|
||||
#define MAP_INITIAL_SIZE 256000
|
||||
#define MAP_INITIAL_SIZE 512000
|
||||
#else
|
||||
#define MAP_INITIAL_SIZE MAP_SIZE
|
||||
#endif
|
||||
|
||||
#ifdef AFL_REAL_LD
|
||||
u8 __afl_area_initial[MAP_INITIAL_SIZE];
|
||||
#else
|
||||
u8 __afl_area_initial[MAP_SIZE];
|
||||
#endif
|
||||
u8 * __afl_area_ptr = __afl_area_initial;
|
||||
u8 * __afl_dictionary;
|
||||
u8 * __afl_fuzz_ptr;
|
||||
|
Reference in New Issue
Block a user