Skip to content

Commit

Permalink
isofs: remove redundant continue statement
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Colin Ian King authored and Jan Kara committed Jun 17, 2021
1 parent 65ffb3d commit e8d46b3
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions fs/isofs/dir.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit e8d46b3

Please sign in to comment.