[Lldb-commits] [lldb] r148562 - /lldb/trunk/examples/python/crashlog.py

Sean Callanan scallanan at apple.com
Fri Jan 20 11:27:48 PST 2012


Author: spyffe
Date: Fri Jan 20 13:27:48 2012
New Revision: 148562

URL: http://llvm.org/viewvc/llvm-project?rev=148562&view=rev
Log:
Fixed a global reference that should have been
a reference to a class variable.

Modified:
    lldb/trunk/examples/python/crashlog.py

Modified: lldb/trunk/examples/python/crashlog.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/examples/python/crashlog.py?rev=148562&r1=148561&r2=148562&view=diff
==============================================================================
--- lldb/trunk/examples/python/crashlog.py (original)
+++ lldb/trunk/examples/python/crashlog.py Fri Jan 20 13:27:48 2012
@@ -385,7 +385,7 @@
             return None # success
         # We weren't able to open the main executable as, but we can still symbolicate
         if self.idents:
-            for ident in idents:
+            for ident in self.idents:
                 image = self.find_image_with_identifier (ident)
                 if image:
                     err = image.create_target ()





More information about the lldb-commits mailing list