diff options
author | Moonchild <moonchild@palemoon.org> | 2019-09-17 11:04:22 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-09-17 11:04:22 +0200 |
commit | 7a3f45eb9d91531bce6ee7a660cd1402b93655b9 (patch) | |
tree | 3602190e7686a329ca2d77130d8d6cf55d080847 /mozglue | |
parent | 2fab36a8bb4b113a2d03152bb2467a0da5d04ad2 (diff) | |
download | aura-central-7a3f45eb9d91531bce6ee7a660cd1402b93655b9.tar.gz |
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.
Diffstat (limited to 'mozglue')
-rw-r--r-- | mozglue/build/WindowsDllBlocklist.cpp | 3 |
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 } }; |