Skip to content
Snippets Groups Projects
Commit 3e8d050c authored by Toshihito Kikuchi's avatar Toshihito Kikuchi
Browse files

Bug 1617188 - Do not call GetVersion(detoured.dll) if nvd3d9wrapx.dll is loaded. r=gerald

We added a workaround to skip `LoadLibraryEx` avoid NVIDIA's crash (bug 1607574),
however we still hit the same crash via the call to `xul!GetVersion`.  This patch
removes that call, and put an empty string as the version of detoured.dll instead.

Differential Revision: https://phabricator.services.mozilla.com/D63735

--HG--
extra : moz-landing-system : lando
parent b224a746
No related branches found
No related tags found
No related merge requests found
......@@ -168,7 +168,7 @@ SharedLibraryInfo SharedLibraryInfo::GetInfoForSelf() {
0, // DLLs are always mapped at offset 0 on Windows
NS_LITERAL_CSTRING("000000000000000000000000000000000"),
moduleNameStr, modulePathStr, pdbNameStr, pdbNameStr,
GetVersion(modulePath), "");
NS_LITERAL_CSTRING(""), "");
sharedLibraryInfo.AddSharedLibrary(shlib);
continue;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment