version: Use GetModuleHandleEx to increment the module ref count

Dmitry Timoshkov dmitry at codeweavers.com
Thu Nov 1 01:23:38 CDT 2007


Hello,

Changelog:
    version: Use GetModuleHandleEx to increment the module ref count.
---
 dlls/version/info.c |    6 ++----
 1 files changed, 2 insertions(+), 4 deletions(-)

diff --git a/dlls/version/info.c b/dlls/version/info.c
index 0ad288e..935d0c1 100644
--- a/dlls/version/info.c
+++ b/dlls/version/info.c
@@ -246,11 +246,9 @@ static DWORD VERSION_GetFileVersionInfo_PE( LPCWSTR filename, DWORD datasize, LP
 
     TRACE("%s\n", debugstr_w(filename));
 
-    hModule = GetModuleHandleW(filename);
-    if(!hModule)
+    if (!GetModuleHandleExW(0, filename, &hModule))
 	hModule = LoadLibraryExW(filename, 0, LOAD_LIBRARY_AS_DATAFILE);
-    else
-	hModule = LoadLibraryExW(filename, 0, 0);
+
     if(!hModule)
     {
 	WARN("Could not load %s\n", debugstr_w(filename));
-- 
1.5.3.4






More information about the wine-patches mailing list