Skip to content

Commit

Permalink
Merge pull request #199 from atsampson/bootblock-checksum
Browse files Browse the repository at this point in the history
fs: compute checksum correctly for large bootblocks
  • Loading branch information
cnvogelg authored Mar 2, 2024
2 parents 3c4271b + 22263ff commit 3bb72d0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions amitools/fs/block/BootBlock.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,9 +52,9 @@ def _calc_chksum(self):
all_blks = [self] + self.extra_blks
n = self.blkdev.block_longs
chksum = 0
for blk in all_blks:
for b, blk in enumerate(all_blks):
for i in range(n):
if i != 1: # skip chksum
if not (b == 0 and i == 1): # skip chksum
chksum += blk._get_long(i)
if chksum > 0xFFFFFFFF:
chksum += 1
Expand Down

0 comments on commit 3bb72d0

Please sign in to comment.