Commit a3348cf4 authored by Mike McCormack's avatar Mike McCormack Committed by Alexandre Julliard

ntdll: Use the NTAPI definition of EXCEPTION_ACCESS_VIOLATION.

parent 0c728255
......@@ -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)
......
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