| 7355 | } |
| 7356 | |
| 7357 | void FatalConditionHandler::reset() { |
| 7358 | if (isSet) { |
| 7359 | RemoveVectoredExceptionHandler(exceptionHandlerHandle); |
| 7360 | SetThreadStackGuarantee(&guaranteeSize); |
| 7361 | exceptionHandlerHandle = nullptr; |
| 7362 | isSet = false; |
| 7363 | } |
| 7364 | } |
| 7365 | |
| 7366 | FatalConditionHandler::~FatalConditionHandler() { |
| 7367 | reset(); |
no test coverage detected