| 4468 | } |
| 4469 | |
| 4470 | NOINLINE static LONG WINAPI crash_handler(EXCEPTION_POINTERS* info) |
| 4471 | { |
| 4472 | // The exception info supplies a trace from exactly where the issue was, |
| 4473 | // no need to skip records |
| 4474 | crash_handler(0, info->ContextRecord); |
| 4475 | return EXCEPTION_CONTINUE_SEARCH; |
| 4476 | } |
| 4477 | |
| 4478 | NOINLINE static void crash_handler(int skip, CONTEXT* ct = nullptr) |
| 4479 | { |
nothing calls this directly
no outgoing calls
no test coverage detected