From e8d46b384129acb0c6b240f5da3ca1484cfefcc7 Mon Sep 17 00:00:00 2001 From: Colin Ian King Date: Thu, 17 Jun 2021 13:08:37 +0100 Subject: [PATCH] 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 --- fs/isofs/dir.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/fs/isofs/dir.c b/fs/isofs/dir.c index b9e6a7e..eb2f827 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); -- 2.7.4