| 8719 | } |
| 8720 | |
| 8721 | void FatalConditionHandler::reset() { |
| 8722 | if (isSet) { |
| 8723 | RemoveVectoredExceptionHandler(exceptionHandlerHandle); |
| 8724 | SetThreadStackGuarantee(&guaranteeSize); |
| 8725 | exceptionHandlerHandle = nullptr; |
| 8726 | isSet = false; |
| 8727 | } |
| 8728 | } |
| 8729 | |
| 8730 | FatalConditionHandler::~FatalConditionHandler() { |
| 8731 | reset(); |
no test coverage detected