summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMoonchild <moonchild@palemoon.org>2019-09-17 11:04:22 +0200
committerwolfbeast <mcwerewolf@wolfbeast.com>2019-10-21 10:32:20 +0200
commitbda981d78661df5a07c1750f1275ce5b57938d73 (patch)
tree318cf4dfebbfc7515fa1db215dc0d28c2794ec42
parentd36d11042e6f7503960c4c7ca379623228c68d4a (diff)
downloadUXP-bda981d78661df5a07c1750f1275ce5b57938d73.tar
UXP-bda981d78661df5a07c1750f1275ce5b57938d73.tar.gz
UXP-bda981d78661df5a07c1750f1275ce5b57938d73.tar.lz
UXP-bda981d78661df5a07c1750f1275ce5b57938d73.tar.xz
UXP-bda981d78661df5a07c1750f1275ce5b57938d73.zip
No issue - Add 360 Safeguard to DLL blocklist
360 Safeguard/360 Total Security (Qihoo) causes crashes in a11y components. This adds the offending dll to the injection blocklist. See BZ bug 1536227 for details.
-rw-r--r--mozglue/build/WindowsDllBlocklist.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/mozglue/build/WindowsDllBlocklist.cpp b/mozglue/build/WindowsDllBlocklist.cpp
index c7d14041d..0686b64cb 100644
--- a/mozglue/build/WindowsDllBlocklist.cpp
+++ b/mozglue/build/WindowsDllBlocklist.cpp
@@ -227,6 +227,9 @@ static DllBlockInfo sWindowsDllBlocklist[] = {
// Comodo IS old versions, startup crash on 64-bit, bug 1140397
{ "guard64.dll", MAKE_VERSION(6, 3, 0, 0) },
+ // 360 Safeguard/360 Total Security causes a11y crashes, bug 1536227.
+ { "safemon64.dll", ALL_VERSIONS },
+
{ nullptr, 0 }
};