2020-08-29 00:39:23 +02:00
|
|
|
diff --git sandbox/policy/win/sandbox_win.cc sandbox/policy/win/sandbox_win.cc
|
|
|
|
index d63d942c7e3e..a100fb4d685f 100644
|
|
|
|
--- sandbox/policy/win/sandbox_win.cc
|
|
|
|
+++ sandbox/policy/win/sandbox_win.cc
|
|
|
|
@@ -953,8 +953,11 @@ ResultCode SandboxWin::StartSandboxedProcess(
|
2019-07-16 19:59:21 +02: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-04 01:29:39 +01:00
|
|
|
- if (sandbox_type != SandboxType::kNetwork)
|
2019-07-16 19:59:21 +02:00
|
|
|
+ if (!launcher_process_command_line.HasSwitch("win-rt-app") &&
|
2020-03-04 01:29:39 +01:00
|
|
|
+ sandbox_type != SandboxType::kNetwork) {
|
2017-09-29 11:17:31 +02:00
|
|
|
+ // Don't enable this mitigation in WinRT apps. See issue #2274.
|
2020-08-29 00:39:23 +02:00
|
|
|
mitigations |= MITIGATION_STRICT_HANDLE_CHECKS;
|
2017-09-29 11:17:31 +02:00
|
|
|
+ }
|
2019-07-16 19:59:21 +02:00
|
|
|
|
|
|
|
result = policy->SetDelayedProcessMitigations(mitigations);
|
2020-08-29 00:39:23 +02:00
|
|
|
if (result != SBOX_ALL_OK)
|