ntdll: Use the NTAPI definition of EXCEPTION_ACCESS_VIOLATION.

oldstable
Mike McCormack 2006-01-16 20:40:25 +01:00 committed by Alexandre Julliard
parent 0c728255a4
commit a3348cf4a0
1 changed files with 1 additions and 1 deletions

View File

@ -568,7 +568,7 @@ DWORD __wine_exception_handler( EXCEPTION_RECORD *record, EXCEPTION_REGISTRATION
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)