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

pull/428/head
Jonathan G Rennison 2 years ago
parent e64427d034
commit 4049cb1407

@ -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 */

Loading…
Cancel
Save