1
0
Fork 0
mirror of synced 2025-03-07 03:53:26 +01:00

ntdll: Report failure in KiUserCallbackDispatcher when catching an exception.

This commit is contained in:
Alexandre Julliard 2024-01-22 11:26:41 +01:00
parent d89037a826
commit 7344a124d7

View file

@ -201,8 +201,8 @@ NTSTATUS WINAPI dispatch_user_callback( void *args, ULONG len, ULONG id )
}
__EXCEPT_ALL
{
ERR( "ignoring exception\n" );
status = STATUS_SUCCESS;
status = GetExceptionCode();
ERR( "ignoring exception %lx\n", status );
}
__ENDTRY
return status;