From 30930554f23511645ad9cfb89792219bf398b654 Mon Sep 17 00:00:00 2001 From: roel kluin Date: Wed, 29 Oct 2008 17:23:54 -0400 Subject: [PATCH] udf: unsigned last[i] cannot be less than 0 unsigned last[i] cannot be less than 0 Signed-off-by: Roel Kluin Signed-off-by: Jan Kara --- fs/udf/super.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/fs/udf/super.c b/fs/udf/super.c index 98d5455f77c7..0368bf60f42b 100644 --- a/fs/udf/super.c +++ b/fs/udf/super.c @@ -746,8 +746,6 @@ static sector_t udf_scan_anchors(struct super_block *sb, sector_t lastblock) * however, if the disc isn't closed, it could be 512 */ for (i = 0; i < ARRAY_SIZE(last); i++) { - if (last[i] < 0) - continue; if (last[i] >= sb->s_bdev->bd_inode->i_size >> sb->s_blocksize_bits) continue; -- 2.39.2