From 5df7749f4ba2032b54c2bc808ea56a469bef08a2 Mon Sep 17 00:00:00 2001 From: Bob Owen Date: Sun, 16 Dec 2018 22:23:01 +0000 Subject: [PATCH] Bug 1514583: Disable sandbox on aarch64 Windows. r=dmajor --- browser/app/profile/firefox.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/browser/app/profile/firefox.js b/browser/app/profile/firefox.js index 526b76a4971a..0dc7f17944c3 100644 --- a/browser/app/profile/firefox.js +++ b/browser/app/profile/firefox.js @@ -1010,7 +1010,11 @@ pref("dom.ipc.plugins.sandbox-level.flash", 0); // On windows these levels are: // See - security/sandbox/win/src/sandboxbroker/sandboxBroker.cpp // SetSecurityLevelForContentProcess() for what the different settings mean. +#if defined(_ARM64_) +pref("security.sandbox.content.level", 0); +#else pref("security.sandbox.content.level", 5); +#endif // This controls the depth of stack trace that is logged when Windows sandbox // logging is turned on. This is only currently available for the content