XCPT_ACCESS_VIOLATION
Access Violation
An access violation exception is generated when an attempt is made either
to load or store data in an inaccessible location, or to execute an inaccessible
instruction. This exception corresponds to both the Intel 80386 general
protection fault (#13), caused by an invalid access attempt; and the page
fault (#14), caused by an attempt to access an uncommitted page or a page
with incorrect attributes for the desired operation.
Exception Code:
XCPT_ACCESS_VIOLATION (0xC0000005)
Handler Information:
The
ExceptionAddress field in the ExceptionReportRecord points to the instruction
that caused the exception. This exception is continuable.
Default
Action:
Additional
Parameters (2):
Exception Info[ 0 ]
Flags
XCPT_UNKNOWN_ACCESS
XCPT_READ_ACCESS
XCPT_WRITE_ACCESS
XCPT_EXECUTE_ACCESS
XCPT_SPACE_ACCESS
XCPT_LIMIT_ACCESS
Exception
Info[ 1 ]
FaultAddr The virtual address (if available)
of the data that is not accessible, or XCPT_DATA_UNKNOWN.
[Back: System Exceptions]
[Next: XCPT_BREAKPOINT]