From: Colin Ian King Date: Thu, 17 Jun 2021 12:08:37 +0000 (+0100) Subject: isofs: remove redundant continue statement X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=e8d46b384129acb0c6b240f5da3ca1484cfefcc7;p=linux.git isofs: remove redundant continue statement The continue statement in the while-loop has no effect, remove it. Addresses-Coverity: ("Continue has no effect") Link: https://lore.kernel.org/r/20210617120837.11994-1-colin.king@canonical.com Signed-off-by: Colin Ian King Signed-off-by: Jan Kara --- diff --git a/fs/isofs/dir.c b/fs/isofs/dir.c index b9e6a7ec78be4..eb2f8273e6f15 100644 --- a/fs/isofs/dir.c +++ b/fs/isofs/dir.c @@ -235,8 +235,6 @@ static int do_isofs_readdir(struct inode *inode, struct file *file, break; } ctx->pos += de_len; - - continue; } if (bh) brelse(bh);