Skip to content

Commit

Permalink
inflate/pack_exe: Remove pointless line of code
Browse files Browse the repository at this point in the history
  • Loading branch information
keirf committed Nov 30, 2023
1 parent c791edb commit efe9c1a
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion inflate/pack_exe.py
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,6 @@ def generate_final_hunk():
else:
# Compress everything except the depacker itself (and the
# longword containing the size of the compressed stream).
packed_len = len(depacker) + len(packed)
alloc += leeway # Include depacker leeway in the hunk allocation
hunk = depacker + struct.pack('>I', len(packed)) + packed
assert alloc&3 == 0 and len(hunk)&3 == 0
Expand Down

0 comments on commit efe9c1a

Please sign in to comment.