ntdll: Treat strings as case-insensitive in find_window_class.

This commit is contained in:
Mark Harmstone 2015-03-28 21:24:49 +00:00 committed by Alexandre Julliard
parent bb83e30635
commit 104161cfd2

View file

@ -3332,7 +3332,7 @@ static NTSTATUS find_window_class(ACTIVATION_CONTEXT* actctx, const UNICODE_STRI
{
const WCHAR *nameW = (WCHAR*)((BYTE*)actctx->wndclass_section + iter->name_offset);
if (!strcmpW(nameW, name->Buffer))
if (!strcmpiW(nameW, name->Buffer))
{
index = iter;
break;