diff options
author | vanhauser-thc <vh@thc.org> | 2024-02-09 13:57:45 +0100 |
---|---|---|
committer | vanhauser-thc <vh@thc.org> | 2024-02-09 13:57:45 +0100 |
commit | dd8806971131fafc5563d0cd993b4a2222b3b486 (patch) | |
tree | 4a3a4ee878263f48832e95ef7f61e9f248221fa5 /src | |
parent | 07bc202e0ad940e0cc7c8770f69ceb32ed851384 (diff) | |
download | afl++-dd8806971131fafc5563d0cd993b4a2222b3b486.tar.gz |
fix
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 8853458a..508b5fa7 100644 --- a/src/afl-forkserver.c +++ b/src/afl-forkserver.c @@ -1220,7 +1220,7 @@ void afl_fsrv_start(afl_forkserver_t *fsrv, char **argv, if ((status & FS_OPT_ERROR) == FS_OPT_ERROR) report_error_and_exit(FS_OPT_GET_ERROR(status)); - if (fsrv->cmplog_binary) { + if (fsrv->cmplog_binary && !fsrv->qemu_mode) { FATAL("Target was compiled with outdated CMPLOG, recompile it!\n"); |