Skip to content

Commit e2b7553

Browse files
author
Mike McLaughlin
authored
Workaround arm32 remote unwind assert in createdump (#98140)
1 parent 9367edc commit e2b7553

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/coreclr/pal/src/exception/remote-unwind.cpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2219,8 +2219,7 @@ resume(unw_addr_space_t as, unw_cursor_t *cp, void *arg)
22192219
static int
22202220
get_proc_name(unw_addr_space_t as, unw_word_t addr, char *bufp, size_t buf_len, unw_word_t *offp, void *arg)
22212221
{
2222-
ASSERT("Not supposed to be ever called\n");
2223-
return -UNW_EINVAL;
2222+
return -UNW_ENOINFO;
22242223
}
22252224

22262225
static int

0 commit comments

Comments
 (0)