ntdll: Report failure in KiUserCallbackDispatcher when catching an exception.
This commit is contained in:
parent
d89037a826
commit
7344a124d7
1 changed files with 2 additions and 2 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Reference in a new issue