Index: chrome/installer/util/install_util.cc |
diff --git a/chrome/installer/util/install_util.cc b/chrome/installer/util/install_util.cc |
index ae96bedf4ef5b0d71de44cbc7ba8bee639695828..22905ef5e5f78c5b9f3dad878c69e1f319e0f84b 100644 |
--- a/chrome/installer/util/install_util.cc |
+++ b/chrome/installer/util/install_util.cc |
@@ -156,7 +156,9 @@ void InstallUtil::TriggerActiveSetupCommand() { |
base::LaunchOptions launch_options; |
if (base::win::IsMetroProcess()) |
launch_options.force_breakaway_from_job_ = true; |
- if (!base::LaunchProcess(cmd.GetCommandLineString(), launch_options, NULL)) |
+ base::Process process = |
+ base::LaunchProcess(cmd.GetCommandLineString(), launch_options); |
+ if (!process.IsValid()) |
PLOG(ERROR) << cmd.GetCommandLineString(); |
} |