diff --git a/src/os/windows/crashlog_win.cpp b/src/os/windows/crashlog_win.cpp index b0767c42ab..5c331bd0d6 100644 --- a/src/os/windows/crashlog_win.cpp +++ b/src/os/windows/crashlog_win.cpp @@ -752,6 +752,9 @@ static LONG WINAPI VectoredExceptionHandler(EXCEPTION_POINTERS *ep) if (ep->ExceptionRecord->ExceptionCode == EXCEPTION_STACK_OVERFLOW) { return ExceptionHandler(ep); } + if (ep->ExceptionRecord->ExceptionCode == 0xE1212012) { + return ExceptionHandler(ep); + } return EXCEPTION_CONTINUE_SEARCH; }