From ef3d5be6c04dae67369533a564aca2ee7a4cd25f Mon Sep 17 00:00:00 2001 From: Sebastian Ullrich Date: Thu, 20 Jun 2024 16:51:25 +0200 Subject: [PATCH] try breaking it first --- src/runtime/process.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/runtime/process.cpp b/src/runtime/process.cpp index d19ed28f6bbf9..0aedbe70f7bc8 100644 --- a/src/runtime/process.cpp +++ b/src/runtime/process.cpp @@ -162,9 +162,9 @@ static obj_res spawn(string_ref const & proc_name, array_ref const & std::string program = proc_name.to_std_string(); // Always escape program in cmdline, in case it contains spaces - std::string command = "\""; + //std::string command = "\""; command += program; - command += "\""; + //command += "\""; // This needs some thought, on Windows we must pass a command string // which is a valid command, that is a fully assembled command to be executed.