Skip to content

Commit ebadf2b

Browse files
committed
Grab fix for KT-71374 from upstream.
1 parent 3440518 commit ebadf2b

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

LLDBPlugin/touchlab_kotlin_lldb/stepping/KonanHook.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,5 +36,6 @@ def is_kotlin_bridging_function() -> bool:
3636
stop_reason = execution_context.frame.thread.GetStopDescription(MAX_SIZE_FOR_STOP_REASON)
3737
plan = PLAN_FROM_STOP_REASON.get(stop_reason)
3838
if plan is not None:
39-
execution_context.thread.StepUsingScriptedThreadPlan('{}.{}'.format(__name__, plan))
39+
execution_context.thread.StepUsingScriptedThreadPlan('{}.{}'.format(__name__, plan), False)
40+
return False
4041
return True

0 commit comments

Comments
 (0)