[Lldb-commits] [lldb] r163943 - /lldb/trunk/source/API/SBThread.cpp

Jim Ingham jingham at apple.com
Fri Sep 14 15:16:10 PDT 2012


Author: jingham
Date: Fri Sep 14 17:16:10 2012
New Revision: 163943

URL: http://llvm.org/viewvc/llvm-project?rev=163943&view=rev
Log:
Remove a duplicate frame_sp local that was shadowing the one we copied the incoming SBFrame into.

<rdar://problem/12304255>

Modified:
    lldb/trunk/source/API/SBThread.cpp

Modified: lldb/trunk/source/API/SBThread.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/API/SBThread.cpp?rev=163943&r1=163942&r2=163943&view=diff
==============================================================================
--- lldb/trunk/source/API/SBThread.cpp (original)
+++ lldb/trunk/source/API/SBThread.cpp Fri Sep 14 17:16:10 2012
@@ -765,7 +765,6 @@
             return sb_error;
         }
         
-        StackFrameSP frame_sp;
         if (!frame_sp)
         {
             frame_sp = thread->GetSelectedFrame ();





More information about the lldb-commits mailing list