pass5.c (check_block_end): Fix fencepost condition where when clearing
the block padding we were missing the last position in the bitmap.
+1999-03-19 <tytso@rsts-11.mit.edu>
+
+ * pass5.c (check_block_end): Fix fencepost condition where when
+ clearing the block padding we were missing the last position
+ in the bitmap.
+
1999-05-17 <tytso@rsts-11.mit.edu>
* unix.c (reserve_stdio_fds): Add safety check in case
for (i = save_blocks_count + 1; i <= end; i++) {
if (!ext2fs_test_block_bitmap(fs->block_map, i)) {
if (fix_problem(ctx, PR_5_BLOCK_BMAP_PADDING, &pctx)) {
- for (i = save_blocks_count + 1; i < end; i++)
+ for (i = save_blocks_count + 1; i <= end; i++)
ext2fs_mark_block_bitmap(fs->block_map,
i);
ext2fs_mark_bb_dirty(fs);