| 8493 | } |
| 8494 | |
| 8495 | void FatalConditionHandler::reset() { |
| 8496 | if (isSet) { |
| 8497 | RemoveVectoredExceptionHandler(exceptionHandlerHandle); |
| 8498 | SetThreadStackGuarantee(&guaranteeSize); |
| 8499 | exceptionHandlerHandle = nullptr; |
| 8500 | isSet = false; |
| 8501 | } |
| 8502 | } |
| 8503 | |
| 8504 | FatalConditionHandler::~FatalConditionHandler() { |
| 8505 | reset(); |
no test coverage detected