Skip to content

Commit f5c2cd5

Browse files
[lldb comparator] fix: stack none displayed when execution is completed (#35)
1 parent 0db3775 commit f5c2cd5

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

debuggers/lldb/lldb_extensions.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@ def get_current_stack_frame_from_target(target):
1313
if not function:
1414
# No debug info for 'function'.
1515
symbol = frame.GetSymbol()
16+
if not symbol:
17+
continue
1618
file_addr = addr.GetFileAddress()
1719
start_addr = symbol.GetStartAddress().GetFileAddress()
1820
symbol_name = symbol.GetName()

0 commit comments

Comments
 (0)