Mike McCormack : ntdll: Use the NTAPI definition of EXCEPTION_ACCESS_VIOLATION.

Alexandre Julliard julliard at wine.codeweavers.com
Mon Jan 16 14:37:50 CST 2006


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

Author: Mike McCormack <mike at codeweavers.com>
Date:   Mon Jan 16 20:40:25 2006 +0100

ntdll: Use the NTAPI definition of EXCEPTION_ACCESS_VIOLATION.

---

 dlls/ntdll/exception.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/dlls/ntdll/exception.c b/dlls/ntdll/exception.c
index d4c4b32..c1677b6 100644
--- a/dlls/ntdll/exception.c
+++ b/dlls/ntdll/exception.c
@@ -568,7 +568,7 @@ DWORD __wine_exception_handler( EXCEPTIO
 
     if (wine_frame->u.filter == (void *)1)  /* special hack for page faults */
     {
-        if (record->ExceptionCode != EXCEPTION_ACCESS_VIOLATION)
+        if (record->ExceptionCode != STATUS_ACCESS_VIOLATION)
             return ExceptionContinueSearch;
     }
     else if (wine_frame->u.filter)




More information about the wine-cvs mailing list