summaryrefslogtreecommitdiffstats
path: root/chrome/installer/util/helper.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/installer/util/helper.cc')
-rw-r--r--chrome/installer/util/helper.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/installer/util/helper.cc b/chrome/installer/util/helper.cc
index a52f6b5..a87bcf9 100644
--- a/chrome/installer/util/helper.cc
+++ b/chrome/installer/util/helper.cc
@@ -61,7 +61,7 @@ bool installer::LaunchChromeAndWaitForResult(bool system_install,
return false;
file_util::AppendToPath(&chrome_exe, installer_util::kChromeExe);
- std::wstring command_line(chrome_exe);
+ std::wstring command_line(L"\"" + chrome_exe + L"\"");
command_line.append(options);
STARTUPINFOW si = {sizeof(si)};
PROCESS_INFORMATION pi = {0};