fusion: Ignore the case of the assembly filename extension.

This commit is contained in:
James Hawkins 2008-08-18 22:56:22 -05:00 committed by Alexandre Julliard
parent cfc68a96c7
commit 236147b568
1 changed files with 1 additions and 1 deletions

View File

@ -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)