Commit b3dfc903 authored by Jacek Caban's avatar Jacek Caban Committed by Alexandre Julliard

ntdll: Use NtContinue in NtRaiseException.

parent 3ecd43dc
......@@ -428,7 +428,7 @@ NTSTATUS WINAPI NtRaiseException( EXCEPTION_RECORD *rec, CONTEXT *context, BOOL
NTSTATUS status = send_debug_event( rec, context, first_chance );
if (status == DBG_CONTINUE || status == DBG_EXCEPTION_HANDLED)
NtSetContextThread( GetCurrentThread(), context );
return NtContinue( context, FALSE );
if (first_chance) call_user_exception_dispatcher( rec, context, pKiUserExceptionDispatcher );
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment