ntdll: Fix hash collision check condition for string keys.

This commit is contained in:
Nikolay Sivov 2013-08-16 17:40:30 +04:00 committed by Alexandre Julliard
parent 9dbeaf2586
commit 30425ece6c
1 changed files with 1 additions and 1 deletions

View File

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