summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xlldb/examples/python/in_call_stack.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/examples/python/in_call_stack.py b/lldb/examples/python/in_call_stack.py
index ba3ca57267f..0647f2ca342 100755
--- a/lldb/examples/python/in_call_stack.py
+++ b/lldb/examples/python/in_call_stack.py
@@ -9,10 +9,10 @@ def __lldb_init_module(debugger, internal_dict):
def in_call_stack(frame, bp_loc, arg_dict, _):
"""Only break if the given name is in the current call stack."""
+ name = arg_dict.GetValueForKey('name').GetStringValue(1000)
thread = frame.GetThread()
found = False
for frame in thread.frames:
- name = arg_dict.GetValueForKey('name').GetStringValue(1000)
# Check the symbol.
symbol = frame.GetSymbol()
if symbol and name in frame.GetSymbol().GetName():
OpenPOWER on IntegriCloud