ntdll: Fix hash collision check condition for string keys.
This commit is contained in:
parent
9dbeaf2586
commit
30425ece6c
|
@ -2336,7 +2336,7 @@ static struct string_index *find_string_index(const struct strsection_header *se
|
|||
{
|
||||
const WCHAR *nameW = (WCHAR*)((BYTE*)section + iter->name_offset);
|
||||
|
||||
if (!strcmpW(nameW, name->Buffer))
|
||||
if (!strcmpiW(nameW, name->Buffer))
|
||||
{
|
||||
index = iter;
|
||||
break;
|
||||
|
|
Loading…
Reference in New Issue