EXE: Skip OutputDebugString exceptions in handler
This commit is contained in:
parent
ce85585a45
commit
2ba3de4b3a
|
@ -91,7 +91,13 @@ void CrashDumpCreate(EXCEPTION_POINTERS* ExceptionPointers)
|
|||
LONG CALLBACK CrashDumpVectoredHandler(EXCEPTION_POINTERS* ExceptionInfo)
|
||||
{
|
||||
if(ExceptionInfo)
|
||||
{
|
||||
// Skip DBG_PRINTEXCEPTION_C
|
||||
if(ExceptionInfo->ExceptionRecord->ExceptionCode != DBG_PRINTEXCEPTION_C)
|
||||
return EXCEPTION_CONTINUE_SEARCH;
|
||||
|
||||
CrashDumpCreate(ExceptionInfo);
|
||||
}
|
||||
|
||||
return EXCEPTION_CONTINUE_SEARCH;
|
||||
}
|
Loading…
Reference in New Issue