Commit 30425ece authored by Nikolay Sivov's avatar Nikolay Sivov Committed by Alexandre Julliard

ntdll: Fix hash collision check condition for string keys.

parent 9dbeaf25
...@@ -2336,7 +2336,7 @@ static struct string_index *find_string_index(const struct strsection_header *se ...@@ -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); const WCHAR *nameW = (WCHAR*)((BYTE*)section + iter->name_offset);
if (!strcmpW(nameW, name->Buffer)) if (!strcmpiW(nameW, name->Buffer))
{ {
index = iter; index = iter;
break; break;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment