From 4b301b04e1843cd04f1b51bc7fe97f2895504278 Mon Sep 17 00:00:00 2001 From: Giannis Adamopoulos Date: Thu, 11 Dec 2014 21:18:36 +0000 Subject: [PATCH] [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 --- reactos/base/shell/explorer/rshell.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reactos/base/shell/explorer/rshell.cpp b/reactos/base/shell/explorer/rshell.cpp index 49e2352153c..9e35490cb3c 100644 --- a/reactos/base/shell/explorer/rshell.cpp +++ b/reactos/base/shell/explorer/rshell.cpp @@ -135,7 +135,7 @@ DWORD WINAPI _WinList_Init(void) } } - hFallback = GetModuleHandleW(L"shdocvw.dll"); + hFallback = LoadLibraryW(L"shdocvw.dll"); if (hFallback) {