ntdll: Use case insensitive comparison in is_import_dll_system().
Fixes a regression introduced by commit 250c113169
.
Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=52446
Signed-off-by: Paul Gofman <pgofman@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
c8c79a9043
commit
9d1ac957b4
|
@ -628,7 +628,7 @@ static BOOL is_import_dll_system( LDR_DATA_TABLE_ENTRY *mod, const IMAGE_IMPORT_
|
|||
{
|
||||
const char *name = get_rva( mod->DllBase, import->Name );
|
||||
|
||||
return !strcmp( name, "ntdll.dll" ) || !strcmp( name, "kernel32.dll" );
|
||||
return !_stricmp( name, "ntdll.dll" ) || !_stricmp( name, "kernel32.dll" );
|
||||
}
|
||||
|
||||
/**********************************************************************
|
||||
|
|
Loading…
Reference in New Issue