]> git.ipfire.org Git - thirdparty/e2fsprogs.git/commitdiff
libext2fs: remove redundant last-group check in ext2fs_check_desc()
authorEric Sandeen <sandeen@redhat.com>
Fri, 16 Sep 2011 13:31:49 +0000 (09:31 -0400)
committerTheodore Ts'o <tytso@mit.edu>
Fri, 16 Sep 2011 13:32:18 +0000 (09:32 -0400)
ext2fs_group_last_block2() already properly calculates
the last block in the last group, so there is no need
to special-case this after the call.

Signed-off-by: Eric Sandeen <sandeen@redhat.com>
Signed-off-by: Theodore Ts'o <tytso@mit.edu>
lib/ext2fs/check_desc.c

index da86964171c1daa72e4d92d65de028d15feb5ac6..d0ca75b3a4692e9f0e528d08891ebfe09f5cecbe 100644 (file)
@@ -53,8 +53,6 @@ errcode_t ext2fs_check_desc(ext2_filsys fs)
                                               EXT4_FEATURE_INCOMPAT_FLEX_BG)) {
                        first_block = ext2fs_group_first_block2(fs, i);
                        last_block = ext2fs_group_last_block2(fs, i);
-                       if (i == (fs->group_desc_count - 1))
-                               last_block = ext2fs_blocks_count(fs->super)-1;
                }
 
                /*