Fix some minor issues

This commit is contained in:
Justine Tunney 2023-04-18 05:02:45 -07:00
parent d484e1dbd4
commit a8ff220654
No known key found for this signature in database
GPG key ID: BE714B4575D6E328
4 changed files with 5 additions and 4 deletions

View file

@ -977,13 +977,13 @@ static privileged void OnSigSys(int sig, siginfo_t *si, void *vctx) {
if (HasSyscall(kPledge + i, si->si_syscall)) {
Log("error: pledge ", kPledge[i].name, " for ",
GetSyscallName(si->si_syscall), " (ord=", ord, " rip=", rip, ")\n",
0);
NULL);
found = true;
}
}
if (!found) {
Log("error: bad syscall (", GetSyscallName(si->si_syscall), " ord=", ord,
" rip=", rip, ")\n", 0);
" rip=", rip, ")\n", NULL);
}
switch (mode & PLEDGE_PENALTY_MASK) {
case PLEDGE_PENALTY_KILL_PROCESS: