ntdll: Use NtContinue in NtRaiseException.

Signed-off-by: Jacek Caban <jacek@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Jacek Caban 2021-02-22 18:01:52 +01:00 committed by Alexandre Julliard
parent 3ecd43dc6f
commit b3dfc903ef
1 changed files with 1 additions and 1 deletions

View File

@ -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 );