isofs: remove redundant continue statement
authorColin Ian King <colin.king@canonical.com>
Thu, 17 Jun 2021 12:08:37 +0000 (13:08 +0100)
committerJan Kara <jack@suse.cz>
Thu, 17 Jun 2021 15:11:42 +0000 (17:11 +0200)
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 <colin.king@canonical.com>
Signed-off-by: Jan Kara <jack@suse.cz>
fs/isofs/dir.c

index b9e6a7e..eb2f827 100644 (file)
@@ -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);