Commit cd21d2db authored by Qian Hong's avatar Qian Hong Committed by Alexandre Julliard

user32: Add more exception handlings for timer callbacks.

parent 3be5c16b
......@@ -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;
}
......
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