diff options
author | Sergej Schumilo <sergej@schumilo.de> | 2022-01-21 08:13:33 +0100 |
---|---|---|
committer | Sergej Schumilo <sergej@schumilo.de> | 2022-01-21 08:13:33 +0100 |
commit | 6ce736aa913363647760d088ef0cb3610a765ff4 (patch) | |
tree | 2fec687da836de4c4604ddefa6bda579a256c3c6 /src | |
parent | 830dcacc07f2740178af666c6e63935885a24d34 (diff) | |
download | afl++-6ce736aa913363647760d088ef0cb3610a765ff4.tar.gz |
use MAX_FILE as maximum size in Nyx mode
Diffstat (limited to 'src')
-rw-r--r-- | src/afl-forkserver.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/afl-forkserver.c b/src/afl-forkserver.c index 1f03cfd3..ffcb30c3 100644 --- a/src/afl-forkserver.c +++ b/src/afl-forkserver.c @@ -407,7 +407,7 @@ void afl_fsrv_start(afl_forkserver_t *fsrv, char **argv, if (fsrv->nyx_standalone){ fsrv->nyx_runner = fsrv->nyx_handlers->nyx_new( - fsrv->target_path, x, fsrv->nyx_bind_cpu_id, 0x10000, true); + fsrv->target_path, x, fsrv->nyx_bind_cpu_id, MAX_FILE, true); } else{ if (fsrv->nyx_parent) { |