Module: wine Branch: master Commit: 30425ece6cddc9427b456618bfa6425b50856317 URL: http://source.winehq.org/git/wine.git/?a=commit;h=30425ece6cddc9427b456618bf...
Author: Nikolay Sivov nsivov@codeweavers.com Date: Fri Aug 16 17:40:30 2013 +0400
ntdll: Fix hash collision check condition for string keys.
---
dlls/ntdll/actctx.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/dlls/ntdll/actctx.c b/dlls/ntdll/actctx.c index 7280b4c..56a28fa 100644 --- a/dlls/ntdll/actctx.c +++ b/dlls/ntdll/actctx.c @@ -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;