Windows: Handle abort exception in VectoredExceptionHandler

To make sure that it is definitely handled
This commit is contained in:
Jonathan G Rennison
2023-06-11 16:47:01 +01:00
parent cca7c0ef0a
commit 417abcccff

View File

@@ -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;
}