[NTOSKRNL] - Don't exit from NtWaitForMultipleObjects with kernel lock held

svn path=/trunk/; revision=54147
This commit is contained in:
Rafal Harabien 2011-10-15 18:41:45 +00:00
parent 861247d1df
commit b25d2f3093

View file

@ -117,7 +117,8 @@ NtWaitForMultipleObjects(IN ULONG ObjectCount,
_SEH2_EXCEPT(EXCEPTION_EXECUTE_HANDLER)
{
/* Return the exception code */
_SEH2_YIELD(return _SEH2_GetExceptionCode());
Status = _SEH2_GetExceptionCode();
SEH2_YIELD(goto Quickie);
}
_SEH2_END;