CCrashHandler: improve readability

Use macro instead of the code directly.
This commit is contained in:
Kawe Mazidjatari 2023-02-04 01:04:06 +01:00
parent b160f39379
commit 14aff2d7b7

View File

@ -503,7 +503,7 @@ void CCrashHandler::CreateMessageProcess()
PEXCEPTION_RECORD pExceptionRecord = m_pExceptionPointers->ExceptionRecord;
PCONTEXT pContextRecord = m_pExceptionPointers->ContextRecord;
if (pExceptionRecord->ExceptionCode == 0xC0000005 &&
if (pExceptionRecord->ExceptionCode == EXCEPTION_ACCESS_VIOLATION &&
pExceptionRecord->ExceptionInformation[0] == 8 &&
pExceptionRecord->ExceptionInformation[1] != pContextRecord->Rip)
{