Skip to content

Commit

Permalink
Workaround arm32 remote unwind assert in createdump (#98140)
Browse files Browse the repository at this point in the history
  • Loading branch information
mikem8361 authored Feb 8, 2024
1 parent 9367edc commit e2b7553
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/coreclr/pal/src/exception/remote-unwind.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2219,8 +2219,7 @@ resume(unw_addr_space_t as, unw_cursor_t *cp, void *arg)
static int
get_proc_name(unw_addr_space_t as, unw_word_t addr, char *bufp, size_t buf_len, unw_word_t *offp, void *arg)
{
ASSERT("Not supposed to be ever called\n");
return -UNW_EINVAL;
return -UNW_ENOINFO;
}

static int
Expand Down

0 comments on commit e2b7553

Please sign in to comment.