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
|
2019-11-12 11:11:44 -05:00
|
|
|
index 7fca3e218b4e..fc1b03056caa 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
|
2019-11-12 11:11:44 -05:00
|
|
|
@@ -929,8 +929,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.
|
|
|
|
- if (sandbox_type != SANDBOX_TYPE_NETWORK)
|
|
|
|
+ if (!launcher_process_command_line.HasSwitch("win-rt-app") &&
|
|
|
|
+ sandbox_type != SANDBOX_TYPE_NETWORK) {
|
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)
|