Bug 1766022: Add videocapturer* to the child process DLL blocklist. r=gcp

This has been found to cause crashes when win32k lockdown is enabled.

Differential Revision: https://phabricator.services.mozilla.com/D144459
This commit is contained in:
Bob Owen 2022-04-22 19:31:11 +00:00
parent eed1aead2d
commit b6b4d8f3fe

View File

@ -295,5 +295,10 @@ BROWSER_PROCESS += [
CHILD_PROCESSES += [
# Causes crashes in the GPU process with WebRender enabled, bug 1544435
DllBlocklistEntry("wbload.dll", ALL_VERSIONS),
# Causes crashes in the content process with win32k lockdown, bug 1766022
DllBlocklistEntry("videocapturer.dll", ALL_VERSIONS),
DllBlocklistEntry("videocapturerhk32.dll", ALL_VERSIONS),
DllBlocklistEntry("videocapturerhk64.dll", ALL_VERSIONS),
]