From: Jay Freeman (saurik) Date: Mon, 16 Dec 2013 12:47:45 +0000 (-0800) Subject: Separate dataExtents / rsrcExtents (gcc noticed). X-Git-Url: https://git.saurik.com/hfs.git/commitdiff_plain/HEAD Separate dataExtents / rsrcExtents (gcc noticed). --- diff --git a/fsck_hfs/dfalib/hfs_endian.c b/fsck_hfs/dfalib/hfs_endian.c index 74c66e6..88752c5 100755 --- a/fsck_hfs/dfalib/hfs_endian.c +++ b/fsck_hfs/dfalib/hfs_endian.c @@ -1071,9 +1071,11 @@ hfs_swap_HFSBTInternalNode ( srcRec->clumpSize = SWAP_BE16 (srcRec->clumpSize); /* Swap the two sets of extents as an array of six (three each) UInt16 */ - for (j = 0; j < kHFSExtentDensity * 2; j++) { + for (j = 0; j < kHFSExtentDensity; j++) { srcRec->dataExtents[j].startBlock = SWAP_BE16 (srcRec->dataExtents[j].startBlock); srcRec->dataExtents[j].blockCount = SWAP_BE16 (srcRec->dataExtents[j].blockCount); + srcRec->rsrcExtents[j].startBlock = SWAP_BE16 (srcRec->rsrcExtents[j].startBlock); + srcRec->rsrcExtents[j].blockCount = SWAP_BE16 (srcRec->rsrcExtents[j].blockCount); } /* Don't swap srcRec->reserved */