Commit 7344a124 authored by Alexandre Julliard's avatar Alexandre Julliard

ntdll: Report failure in KiUserCallbackDispatcher when catching an exception.

parent d89037a8
...@@ -201,8 +201,8 @@ NTSTATUS WINAPI dispatch_user_callback( void *args, ULONG len, ULONG id ) ...@@ -201,8 +201,8 @@ NTSTATUS WINAPI dispatch_user_callback( void *args, ULONG len, ULONG id )
} }
__EXCEPT_ALL __EXCEPT_ALL
{ {
ERR( "ignoring exception\n" ); status = GetExceptionCode();
status = STATUS_SUCCESS; ERR( "ignoring exception %lx\n", status );
} }
__ENDTRY __ENDTRY
return status; return status;
......
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