[Lldb-commits] [lldb] fa71238 - [lldb] inserted a typeo when checking in a suggested fix

Jason Molenda via lldb-commits lldb-commits at lists.llvm.org
Wed Feb 12 14:01:07 PST 2025


Author: Jason Molenda
Date: 2025-02-12T14:00:41-08:00
New Revision: fa71238da800f3a818ec0e0649462389dc577890

URL: https://github.com/llvm/llvm-project/commit/fa71238da800f3a818ec0e0649462389dc577890
DIFF: https://github.com/llvm/llvm-project/commit/fa71238da800f3a818ec0e0649462389dc577890.diff

LOG: [lldb] inserted a typeo when checking in a suggested fix

Added: 
    

Modified: 
    lldb/source/Target/ThreadPlanStepOut.cpp

Removed: 
    


################################################################################
diff  --git a/lldb/source/Target/ThreadPlanStepOut.cpp b/lldb/source/Target/ThreadPlanStepOut.cpp
index 95e51408dbcdc..a05c46db6b8ca 100644
--- a/lldb/source/Target/ThreadPlanStepOut.cpp
+++ b/lldb/source/Target/ThreadPlanStepOut.cpp
@@ -365,7 +365,7 @@ bool ThreadPlanStepOut::ShouldStop(Event *event_ptr) {
 
   if (!done) {
     StopInfoSP stop_info_sp = GetPrivateStopInfo();
-    if (stop_info && stop_info_sp->GetStopReason() == eStopReasonBreakpoint) {
+    if (stop_info_sp && stop_info_sp->GetStopReason() == eStopReasonBreakpoint) {
       StackID frame_zero_id = GetThread().GetStackFrameAtIndex(0)->GetStackID();
       done = !(frame_zero_id < m_step_out_to_id);
     }


        


More information about the lldb-commits mailing list