Qian Hong : user32: Add more exception handlings for timer callbacks.

Alexandre Julliard julliard at wine.codeweavers.com
Tue Nov 11 11:04:45 CST 2014


Module: wine
Branch: master
Commit: cd21d2dbda3722374d7eed372ed914712216a0cd
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=cd21d2dbda3722374d7eed372ed914712216a0cd

Author: Qian Hong <qhong at codeweavers.com>
Date:   Mon Nov 10 16:27:54 2014 +0800

user32: Add more exception handlings for timer callbacks.

---

 dlls/user32/message.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dlls/user32/message.c b/dlls/user32/message.c
index b75c7e9..eac4e4d 100644
--- a/dlls/user32/message.c
+++ b/dlls/user32/message.c
@@ -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;
             }




More information about the wine-cvs mailing list