mirror of
https://github.com/AFLplusplus/AFLplusplus.git
synced 2025-06-14 02:58:08 +00:00
turn off map size detection if skip_bin_check is set
This commit is contained in:
@ -1110,6 +1110,10 @@ u32 get_map_size(void) {
|
||||
|
||||
if (map_size % 64) { map_size = (((map_size >> 6) + 1) << 6); }
|
||||
|
||||
} else if (getenv("AFL_SKIP_BIN_CHECK")) {
|
||||
|
||||
map_size = MAP_SIZE;
|
||||
|
||||
}
|
||||
|
||||
return map_size;
|
||||
|
Reference in New Issue
Block a user