We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 58a13f9 commit a5618a0Copy full SHA for a5618a0
lldb/source/Target/ThreadPlanStepOut.cpp
@@ -365,7 +365,7 @@ bool ThreadPlanStepOut::ShouldStop(Event *event_ptr) {
365
366
if (!done) {
367
StopInfoSP stop_info_sp = GetPrivateStopInfo();
368
- if (stop_info && stop_info_sp->GetStopReason() == eStopReasonBreakpoint) {
+ if (stop_info_sp && stop_info_sp->GetStopReason() == eStopReasonBreakpoint) {
369
StackID frame_zero_id = GetThread().GetStackFrameAtIndex(0)->GetStackID();
370
done = !(frame_zero_id < m_step_out_to_id);
371
}
0 commit comments