[KERNEL32]: Fix a bug in QueryActCtx

svn path=/trunk/; revision=59871
This commit is contained in:
Alex Ionescu 2013-08-29 16:42:14 +00:00
parent 95ea6a8d77
commit b626c99f0b

View file

@ -336,6 +336,7 @@ QueryActCtxW(IN DWORD dwFlags,
BaseSetLastNTError(STATUS_INVALID_PARAMETER_3); BaseSetLastNTError(STATUS_INVALID_PARAMETER_3);
return FALSE; return FALSE;
} }
break;
default: default:
@ -401,6 +402,10 @@ QueryActCtxW(IN DWORD dwFlags,
} }
/* Now call the native API */ /* Now call the native API */
DPRINT1("SXS: %s() Calling Native API with Native Flags %lx for Win32 Flags %lx\n",
__FUNCTION__,
NativeFlags,
dwFlags);
Status = RtlQueryInformationActivationContext(NativeFlags, Status = RtlQueryInformationActivationContext(NativeFlags,
hActCtx, hActCtx,
pvSubInstance, pvSubInstance,