summaryrefslogtreecommitdiff
path: root/drivers/unix/os_unix.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/unix/os_unix.cpp')
-rw-r--r--drivers/unix/os_unix.cpp28
1 files changed, 20 insertions, 8 deletions
diff --git a/drivers/unix/os_unix.cpp b/drivers/unix/os_unix.cpp
index 13bb866503..d94c2126ef 100644
--- a/drivers/unix/os_unix.cpp
+++ b/drivers/unix/os_unix.cpp
@@ -299,16 +299,22 @@ Error OS_Unix::execute(const String &p_path, const List<String> &p_arguments, St
if (pid == 0) {
// The child process
- Vector<char *> args;
- args.push_back((char *)p_path.utf8().get_data());
+ Vector<CharString> cs;
+ cs.push_back(p_path.utf8());
for (int i = 0; i < p_arguments.size(); i++) {
- args.push_back((char *)p_arguments[i].utf8().get_data());
+ cs.push_back(p_arguments[i].utf8());
+ }
+
+ Vector<char *> args;
+ for (int i = 0; i < cs.size(); i++) {
+ args.push_back((char *)cs[i].get_data());
}
args.push_back(0);
execvp(p_path.utf8().get_data(), &args[0]);
// The execvp() function only returns if an error occurs.
- CRASH_NOW_MSG("Could not create child process: " + p_path);
+ ERR_PRINT("Could not create child process: " + p_path);
+ raise(SIGKILL);
}
int status;
@@ -335,16 +341,22 @@ Error OS_Unix::create_process(const String &p_path, const List<String> &p_argume
// This ensures the process won't go zombie at the end.
setsid();
- Vector<char *> args;
- args.push_back((char *)p_path.utf8().get_data());
+ Vector<CharString> cs;
+ cs.push_back(p_path.utf8());
for (int i = 0; i < p_arguments.size(); i++) {
- args.push_back((char *)p_arguments[i].utf8().get_data());
+ cs.push_back(p_arguments[i].utf8());
+ }
+
+ Vector<char *> args;
+ for (int i = 0; i < cs.size(); i++) {
+ args.push_back((char *)cs[i].get_data());
}
args.push_back(0);
execvp(p_path.utf8().get_data(), &args[0]);
// The execvp() function only returns if an error occurs.
- CRASH_NOW_MSG("Could not create child process: " + p_path);
+ ERR_PRINT("Could not create child process: " + p_path);
+ raise(SIGKILL);
}
if (r_child_id) {