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 cbb4e99 commit fa71238Copy full SHA for fa71238
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