[RTL] Partially sync actctx.c with Wine Staging 1.7.55. Fixes 3 kernel32:actctx failures. CORE-10536

svn path=/trunk/; revision=70181
This commit is contained in:
Amine Khaldi 2015-11-28 16:24:53 +00:00
parent 7ceb06e329
commit 4328123d60
2 changed files with 5 additions and 2 deletions

View file

@ -3486,7 +3486,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;
@ -4585,6 +4585,9 @@ static NTSTATUS find_string(ACTIVATION_CONTEXT* actctx, ULONG section_kind,
switch (section_kind)
{
case ACTIVATION_CONTEXT_SECTION_ASSEMBLY_INFORMATION:
DPRINT1("Unsupported yet section_kind %x\n", section_kind);
return STATUS_SXS_KEY_NOT_FOUND;
case ACTIVATION_CONTEXT_SECTION_DLL_REDIRECTION:
status = find_dll_redirection(actctx, section_name, data);
break;

View file

@ -252,7 +252,7 @@ check Wine current sources first as it may already be fixed.
reactos/lib/3rdparty/strmbase # Synced to WineStaging-1.7.55
reactos/lib/rtl/actctx.c # Partly synced with WineStaging-1.7.37
reactos/lib/rtl/actctx.c # Partly synced with WineStaging-1.7.55
reactos/lib/rtl/timerqueue.c # Partly synced with WineStaging-1.7.55
advapi32 -