Skip to content

Commit 9f9ed98

Browse files
jasonmolendajoaosaffran
authored and
joaosaffran
committed
[lldb] inserted a typeo when checking in a suggested fix
1 parent a2f2417 commit 9f9ed98

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lldb/source/Target/ThreadPlanStepOut.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -365,7 +365,7 @@ bool ThreadPlanStepOut::ShouldStop(Event *event_ptr) {
365365

366366
if (!done) {
367367
StopInfoSP stop_info_sp = GetPrivateStopInfo();
368-
if (stop_info && stop_info_sp->GetStopReason() == eStopReasonBreakpoint) {
368+
if (stop_info_sp && stop_info_sp->GetStopReason() == eStopReasonBreakpoint) {
369369
StackID frame_zero_id = GetThread().GetStackFrameAtIndex(0)->GetStackID();
370370
done = !(frame_zero_id < m_step_out_to_id);
371371
}

0 commit comments

Comments
 (0)