James Hawkins : fusion: Ignore the case of the assembly filename extension.

Alexandre Julliard julliard at winehq.org
Tue Aug 19 08:46:36 CDT 2008


Module: wine
Branch: master
Commit: 236147b5682cd973ec5a689833b4cc20f966e492
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=236147b5682cd973ec5a689833b4cc20f966e492

Author: James Hawkins <jhawkins at codeweavers.com>
Date:   Mon Aug 18 22:56:22 2008 -0500

fusion: Ignore the case of the assembly filename extension.

---

 dlls/fusion/asmcache.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/dlls/fusion/asmcache.c b/dlls/fusion/asmcache.c
index 7da79f4..57c7aed 100644
--- a/dlls/fusion/asmcache.c
+++ b/dlls/fusion/asmcache.c
@@ -213,7 +213,7 @@ static HRESULT WINAPI IAssemblyCacheImpl_InstallAssembly(IAssemblyCache *iface,
     if (!(ext = strrchrW(pszManifestFilePath, '.')))
         return HRESULT_FROM_WIN32(ERROR_INVALID_NAME);
 
-    if (lstrcmpW(ext, ext_exe) && lstrcmpW(ext, ext_dll))
+    if (lstrcmpiW(ext, ext_exe) && lstrcmpiW(ext, ext_dll))
         return HRESULT_FROM_WIN32(ERROR_INVALID_NAME);
 
     if (GetFileAttributesW(pszManifestFilePath) == INVALID_FILE_ATTRIBUTES)




More information about the wine-cvs mailing list