user32: Add more exception handlings for timer callbacks.

oldstable
Qian Hong 2014-11-10 16:27:54 +08:00 committed by Alexandre Julliard
parent 3be5c16b4d
commit cd21d2dbda
1 changed files with 2 additions and 2 deletions

View File

@ -3934,7 +3934,7 @@ LRESULT WINAPI DECLSPEC_HOTPATCH DispatchMessageA( const MSG* msg )
retval = CallWindowProcA( (WNDPROC)msg->lParam, msg->hwnd,
msg->message, msg->wParam, GetTickCount() );
}
__EXCEPT_PAGE_FAULT
__EXCEPT_ALL
{
retval = 0;
}
@ -4005,7 +4005,7 @@ LRESULT WINAPI DECLSPEC_HOTPATCH DispatchMessageW( const MSG* msg )
retval = CallWindowProcW( (WNDPROC)msg->lParam, msg->hwnd,
msg->message, msg->wParam, GetTickCount() );
}
__EXCEPT_PAGE_FAULT
__EXCEPT_ALL
{
retval = 0;
}