mirror of
https://github.com/AFLplusplus/AFLplusplus.git
synced 2025-06-17 12:18:08 +00:00
Fix.
This commit is contained in:
@ -1240,7 +1240,12 @@ int main(int argc, char **argv_orig, char **envp) {
|
||||
|
||||
u32 save_be_quiet = be_quiet;
|
||||
be_quiet = !debug;
|
||||
fsrv->map_size = FS_OPT_MAX_MAPSIZE; // dummy temporary value
|
||||
if (map_size > 4194304) {
|
||||
fsrv->map_size = map_size;
|
||||
}
|
||||
else {
|
||||
fsrv->map_size = 4194304; // dummy temporary value
|
||||
}
|
||||
u32 new_map_size =
|
||||
afl_fsrv_get_mapsize(fsrv, use_argv, &stop_soon,
|
||||
(get_afl_env("AFL_DEBUG_CHILD") ||
|
||||
|
Reference in New Issue
Block a user