MacOS: Use _exit instead of exit on execvp failure in crashlog

This commit is contained in:
Jonathan G Rennison
2022-09-04 22:15:26 +01:00
parent e64427d034
commit 4049cb1407

View File

@@ -82,7 +82,7 @@ static bool ExecReadStdoutThroughFile(const char *file, char *const *args, char
close(null_fd);
execvp(file, args);
exit(42);
_Exit(42);
}
/* parent */