[EXPLORER]

* Use LoadLibrary instead of GetModuleHandle in the wrapper of WinList_Init.
* Shdocvw was never loaded till that point so WinList_Init was not called.
* Should fix Opening link location in windows.

svn path=/trunk/; revision=65611
This commit is contained in:
Giannis Adamopoulos 2014-12-11 21:18:36 +00:00
parent c960788a1d
commit 4b301b04e1

View file

@ -135,7 +135,7 @@ DWORD WINAPI _WinList_Init(void)
}
}
hFallback = GetModuleHandleW(L"shdocvw.dll");
hFallback = LoadLibraryW(L"shdocvw.dll");
if (hFallback)
{