| 10421 | } |
| 10422 | |
| 10423 | void FatalConditionHandler::reset() { |
| 10424 | if (isSet) { |
| 10425 | RemoveVectoredExceptionHandler(exceptionHandlerHandle); |
| 10426 | SetThreadStackGuarantee(&guaranteeSize); |
| 10427 | exceptionHandlerHandle = nullptr; |
| 10428 | isSet = false; |
| 10429 | } |
| 10430 | } |
| 10431 | |
| 10432 | FatalConditionHandler::~FatalConditionHandler() { |
| 10433 | reset(); |
no test coverage detected