Skip to content

Commit

Permalink
Update dbghelp.c
Browse files Browse the repository at this point in the history
  • Loading branch information
apache-hb committed Sep 4, 2024
1 parent def8914 commit f55a532
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/common/backtrace/src/dbghelp.c
Original file line number Diff line number Diff line change
Expand Up @@ -123,6 +123,10 @@ bt_resolve_t bt_resolve_inner(bt_address_t frame, bt_symbol_t *symbol)

static LONG WINAPI bt_exception_handler(EXCEPTION_POINTERS *exception)
{
/* ignore C++ exceptions */
if (exception->ExceptionRecord->ExceptionCode == 0xe06d7363)
return EXCEPTION_CONTINUE_SEARCH;

gSystemError.begin(exception->ExceptionRecord->ExceptionCode, gSystemError.user);

read_context_stack(exception->ContextRecord, gSystemError.next, gSystemError.user);
Expand Down

0 comments on commit f55a532

Please sign in to comment.