Remove unhanded exception filter
| 74 | /// Remove unhanded exception filter |
| 75 | /// </summary> |
| 76 | void DumpHandler::DisableWatchdog() |
| 77 | { |
| 78 | if (_pPrevFilter) |
| 79 | { |
| 80 | SetUnhandledExceptionFilter( (LPTOP_LEVEL_EXCEPTION_FILTER)_pPrevFilter ); |
| 81 | _pPrevFilter = nullptr; |
| 82 | } |
| 83 | } |
| 84 | |
| 85 | /// <summary> |
| 86 | /// Unhanded exception filter |
nothing calls this directly
no outgoing calls
no test coverage detected