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/[email protected] Signed-off-by: Colin Ian King <[email protected]> Signed-off-by: Jan Kara <[email protected]>
1 parent 65ffb3d commit e8d46b3

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

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)