This commit is contained in:
vanhauser-thc
2023-07-10 18:29:21 +02:00
parent b547a6ab0d
commit a46d27fad5
4 changed files with 7 additions and 7 deletions

View File

@ -403,7 +403,7 @@ u8 *find_binary(u8 *fname) {
FATAL(
"Unexpected overflow when processing ENV. This should never "
"happend.");
"happened.");
}

View File

@ -667,13 +667,13 @@ void afl_fsrv_start(afl_forkserver_t *fsrv, char **argv,
switch (fsrv->nyx_handlers->nyx_exec(fsrv->nyx_runner)) {
case Abort:
NYX_PRE_FATAL(fsrv, "Error: Nyx abort occured...");
NYX_PRE_FATAL(fsrv, "Error: Nyx abort occurred...");
break;
case IoError:
NYX_PRE_FATAL(fsrv, "Error: QEMU-Nyx has died...");
break;
case Error:
NYX_PRE_FATAL(fsrv, "Error: Nyx runtime error has occured...");
NYX_PRE_FATAL(fsrv, "Error: Nyx runtime error has occurred...");
break;
default:
break;
@ -1581,7 +1581,7 @@ afl_fsrv_run_target(afl_forkserver_t *fsrv, u32 timeout,
FATAL("FixMe: Nyx InvalidWriteToPayload handler is missing");
break;
case Abort:
FATAL("Error: Nyx abort occured...");
FATAL("Error: Nyx abort occurred...");
case IoError:
if (*stop_soon_p) {
@ -1595,7 +1595,7 @@ afl_fsrv_run_target(afl_forkserver_t *fsrv, u32 timeout,
break;
case Error:
FATAL("Error: Nyx runtime error has occured...");
FATAL("Error: Nyx runtime error has occurred...");
break;
}