mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2025-06-05 21:39:12 +02:00
Update to Chromium version 81.0.4044.0 (#737173)
This commit is contained in:
@ -1,14 +1,14 @@
|
||||
diff --git services/service_manager/sandbox/win/sandbox_win.cc services/service_manager/sandbox/win/sandbox_win.cc
|
||||
index 0d4e7f5d5c29..9f27c2b06c4e 100644
|
||||
index e8dd7fc20903..344d73959d79 100644
|
||||
--- services/service_manager/sandbox/win/sandbox_win.cc
|
||||
+++ services/service_manager/sandbox/win/sandbox_win.cc
|
||||
@@ -918,8 +918,11 @@ sandbox::ResultCode SandboxWin::StartSandboxedProcess(
|
||||
@@ -924,8 +924,11 @@ sandbox::ResultCode SandboxWin::StartSandboxedProcess(
|
||||
}
|
||||
// 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 (sandbox_type != SandboxType::kNetwork)
|
||||
+ if (!launcher_process_command_line.HasSwitch("win-rt-app") &&
|
||||
+ sandbox_type != SANDBOX_TYPE_NETWORK) {
|
||||
+ sandbox_type != SandboxType::kNetwork) {
|
||||
+ // Don't enable this mitigation in WinRT apps. See issue #2274.
|
||||
mitigations |= sandbox::MITIGATION_STRICT_HANDLE_CHECKS;
|
||||
+ }
|
||||
|
Reference in New Issue
Block a user