From 236147b5682cd973ec5a689833b4cc20f966e492 Mon Sep 17 00:00:00 2001 From: James Hawkins Date: Mon, 18 Aug 2008 22:56:22 -0500 Subject: [PATCH] fusion: Ignore the case of the assembly filename extension. --- dlls/fusion/asmcache.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/fusion/asmcache.c b/dlls/fusion/asmcache.c index 7da79f46453..57c7aeded7d 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)