Skip to content

Commit

Permalink
Merged in HolmsBlazhey/macholib (pull request #13)
Browse files Browse the repository at this point in the history
fix procesing DSYM file from XCODE 6.x
  • Loading branch information
ronaldoussoren committed Dec 13, 2016
2 parents bb2ac1f + 80425e9 commit 3a8ec9b
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions macholib/MachO.py
Original file line number Diff line number Diff line change
Expand Up @@ -262,11 +262,6 @@ def load(self, fh):
self.total_size = sizeof(self.mach_header) + read_bytes
self.low_offset = low_offset

# this header overwrites a segment, what the heck?
if self.total_size > low_offset:
raise ValueError("total_size > low_offset (%d > %d)" % (
self.total_size, low_offset))

def walkRelocatables(self, shouldRelocateCommand=_shouldRelocateCommand):
"""
for all relocatable commands
Expand Down

0 comments on commit 3a8ec9b

Please sign in to comment.