2017-12-07 16:44:24 -05:00
|
|
|
diff --git services/service_manager/sandbox/win/sandbox_win.cc services/service_manager/sandbox/win/sandbox_win.cc
|
2020-03-03 19:29:39 -05:00
|
|
|
index e8dd7fc20903..344d73959d79 100644
|
2017-12-07 16:44:24 -05:00
|
|
|
--- services/service_manager/sandbox/win/sandbox_win.cc
|
|
|
|
+++ services/service_manager/sandbox/win/sandbox_win.cc
|
2020-03-03 19:29:39 -05:00
|
|
|
@@ -924,8 +924,11 @@ sandbox::ResultCode SandboxWin::StartSandboxedProcess(
|
2019-07-16 13:59:21 -04:00
|
|
|
}
|
|
|
|
// TODO(wfh): Relax strict handle checks for network process until root cause
|
|
|
|
// for this crash can be resolved. See https://crbug.com/939590.
|
2020-03-03 19:29:39 -05:00
|
|
|
- if (sandbox_type != SandboxType::kNetwork)
|
2019-07-16 13:59:21 -04:00
|
|
|
+ if (!launcher_process_command_line.HasSwitch("win-rt-app") &&
|
2020-03-03 19:29:39 -05:00
|
|
|
+ sandbox_type != SandboxType::kNetwork) {
|
2017-09-29 11:17:31 +02:00
|
|
|
+ // Don't enable this mitigation in WinRT apps. See issue #2274.
|
2019-07-16 13:59:21 -04:00
|
|
|
mitigations |= sandbox::MITIGATION_STRICT_HANDLE_CHECKS;
|
2017-09-29 11:17:31 +02:00
|
|
|
+ }
|
2019-07-16 13:59:21 -04:00
|
|
|
|
|
|
|
result = policy->SetDelayedProcessMitigations(mitigations);
|
|
|
|
if (result != sandbox::SBOX_ALL_OK)
|