From: Theodore Ts'o Date: Mon, 25 Jun 2018 01:27:42 +0000 (-0400) Subject: resize: remove calculation of unused variable X-Git-Tag: v1.44.3-rc1~5 X-Git-Url: https://git.whamcloud.com/?a=commitdiff_plain;h=8951fd9f51e969564260e21b835000009b6a2d12;p=tools%2Fe2fsprogs.git resize: remove calculation of unused variable Fix-Coverty-Bug: 1398367 Signed-off-by: Theodore Ts'o --- diff --git a/resize/online.c b/resize/online.c index f0c214b..2caf946 100644 --- a/resize/online.c +++ b/resize/online.c @@ -61,7 +61,7 @@ errcode_t online_resize_fs(ext2_filsys fs, const char *mtpt, double percent; dgrp_t i; blk_t size; - int fd, overhead; + int fd; int use_old_ioctl = 1; int no_meta_bg_resize = 0; int no_resize_ioctl = 0; @@ -233,13 +233,6 @@ errcode_t online_resize_fs(ext2_filsys fs, const char *mtpt, for (i = fs->group_desc_count; i < new_fs->group_desc_count; i++) { - - overhead = (int) (2 + new_fs->inode_blocks_per_group); - - if (ext2fs_bg_has_super(new_fs, new_fs->group_desc_count - 1)) - overhead += 1 + new_fs->desc_blocks + - new_fs->super->s_reserved_gdt_blocks; - input.group = i; input.block_bitmap = ext2fs_block_bitmap_loc(new_fs, i); input.inode_bitmap = ext2fs_inode_bitmap_loc(new_fs, i);