proper PSEH return usage (thanks janderwald)

svn path=/trunk/; revision=29635
This commit is contained in:
Mike Nordell 2007-10-17 09:19:09 +00:00
parent fe36bfa80f
commit 6d8670a692

View file

@ -649,7 +649,7 @@ NtAllocateVirtualMemory(IN HANDLE ProcessHandle,
{
/* Get the exception code */
Status = _SEH_GetExceptionCode();
return(Status); /* Correct? NT5 returns STATUS_ACCESS_VIOLATION ? */
_SEH_YIELD(return Status);
}
_SEH_END;