Skip to content

Commit 87208e6

Browse files
authored
Update filter_exception_decoder.py
1 parent 8ab9bbb commit 87208e6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

monitor/filter_exception_decoder.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -422,8 +422,8 @@ def decode_address(self, addr, elf_path):
422422
# Newlines happen with inlined methods
423423
output = output.replace("\n", "\n ")
424424

425-
# Check if address was found in ELF
426-
if output == "?? ??:0":
425+
# Check if address was found in ELF (handle common variants)
426+
if output in ("?? ??:0", "??:0") or output.strip().startswith("?? ") or output.strip() == "??":
427427
return None
428428

429429
return output

0 commit comments

Comments
 (0)