1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-06 12:20:30 +00:00

[macOS] Fix crash on failed fork.

This commit is contained in:
bruvzg
2020-08-11 17:45:09 +03:00
parent e2f4510a27
commit d6e3a8a137

View File

@@ -323,7 +323,7 @@ Error OS_Unix::execute(const String &p_path, const List<String> &p_arguments, bo
execvp(p_path.utf8().get_data(), &args[0]);
// still alive? something failed..
fprintf(stderr, "**ERROR** OS_Unix::execute - Could not create child process while executing: %s\n", p_path.utf8().get_data());
abort();
raise(SIGKILL);
}
if (p_blocking) {