| 7185 | } |
| 7186 | |
| 7187 | void FatalConditionHandler::reset() { |
| 7188 | if (isSet) { |
| 7189 | RemoveVectoredExceptionHandler(exceptionHandlerHandle); |
| 7190 | SetThreadStackGuarantee(&guaranteeSize); |
| 7191 | exceptionHandlerHandle = nullptr; |
| 7192 | isSet = false; |
| 7193 | } |
| 7194 | } |
| 7195 | |
| 7196 | FatalConditionHandler::~FatalConditionHandler() { |
| 7197 | reset(); |
no test coverage detected