| 10685 | } |
| 10686 | |
| 10687 | void FatalConditionHandler::reset() { |
| 10688 | if (isSet) { |
| 10689 | RemoveVectoredExceptionHandler(exceptionHandlerHandle); |
| 10690 | SetThreadStackGuarantee(&guaranteeSize); |
| 10691 | exceptionHandlerHandle = nullptr; |
| 10692 | isSet = false; |
| 10693 | } |
| 10694 | } |
| 10695 | |
| 10696 | FatalConditionHandler::~FatalConditionHandler() { |
| 10697 | reset(); |
no test coverage detected