diff options
author | van Hauser <vh@thc.org> | 2020-06-05 09:42:17 +0200 |
---|---|---|
committer | van Hauser <vh@thc.org> | 2020-06-05 09:42:17 +0200 |
commit | e01cad2f7de77c4704243d7011de2bff95fd59f7 (patch) | |
tree | abcb7cc5dae9b35b3199d871136e343c528521b9 /src | |
parent | a1beb72cad5a9993e4bd437c55523824d515a72f (diff) | |
download | afl++-e01cad2f7de77c4704243d7011de2bff95fd59f7.tar.gz |
qemu debug
Diffstat (limited to 'src')
-rw-r--r-- | src/afl-forkserver.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/afl-forkserver.c b/src/afl-forkserver.c index 7f89f0dc..505fb7a3 100644 --- a/src/afl-forkserver.c +++ b/src/afl-forkserver.c @@ -277,8 +277,8 @@ static void report_error_and_exit(int error) { break; case FS_ERROR_MMAP: FATAL( - "the fuzzing target reports that the mmap() call to the shared memory " - "failed."); + "the fuzzing target reports that the mmap() call to the shared " + "memory failed."); break; default: FATAL("unknown error code %u from fuzzing target!", error); @@ -488,16 +488,16 @@ void afl_fsrv_start(afl_forkserver_t *fsrv, char **argv, if (!be_quiet) { OKF("All right - fork server is up."); } - if ((status & FS_OPT_ERROR) == FS_OPT_ERROR) - report_error_and_exit(FS_OPT_GET_ERROR(status)); + if (getenv("AFL_DEBUG")) { - if ((status & FS_OPT_ENABLED) == FS_OPT_ENABLED) { + ACTF("Extended forkserver functions received (%08x).", status); - if (getenv("AFL_DEBUG")) { + } - ACTF("Extended forkserver functions received (%08x).", status); + if ((status & FS_OPT_ERROR) == FS_OPT_ERROR) + report_error_and_exit(FS_OPT_GET_ERROR(status)); - } + if ((status & FS_OPT_ENABLED) == FS_OPT_ENABLED) { if ((status & FS_OPT_SNAPSHOT) == FS_OPT_SNAPSHOT) { |