Fixed a global reference that should have been

a reference to a class variable.

llvm-svn: 148562
This commit is contained in:
Sean Callanan 2012-01-20 19:27:48 +00:00
parent 42a6eb7195
commit 88685f2865
1 changed files with 1 additions and 1 deletions

View File

@ -385,7 +385,7 @@ class CrashLog:
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 ()