ntdll: Don't send the first chance debug event twice.

Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Alexandre Julliard 2019-09-18 17:19:34 +02:00
parent af4c7e6e61
commit d299087d30
1 changed files with 1 additions and 1 deletions

View File

@ -2604,7 +2604,7 @@ NTSTATUS WINAPI NtRaiseException( EXCEPTION_RECORD *rec, CONTEXT *context, BOOL
*/
static void raise_generic_exception( EXCEPTION_RECORD *rec, CONTEXT *context )
{
NTSTATUS status = NtRaiseException( rec, context, TRUE );
NTSTATUS status = raise_exception( rec, context, TRUE );
raise_status( status, rec );
}