Skip to content

Commit e8d46b3

Browse files
Colin Ian Kingjankara
authored andcommitted
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 <colin.king@canonical.com> Signed-off-by: Jan Kara <jack@suse.cz>
1 parent 65ffb3d commit e8d46b3

1 file changed

Lines changed: 0 additions & 2 deletions

File tree

fs/isofs/dir.c

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -235,8 +235,6 @@ static int do_isofs_readdir(struct inode *inode, struct file *file,
235235
break;
236236
}
237237
ctx->pos += de_len;
238-
239-
continue;
240238
}
241239
if (bh)
242240
brelse(bh);

0 commit comments

Comments
 (0)