mirror of
https://github.com/tbsdtv/linux_media.git
synced 2025-07-23 12:43:29 +02:00
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>
This commit is contained in:
@@ -235,8 +235,6 @@ static int do_isofs_readdir(struct inode *inode, struct file *file,
|
|||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
ctx->pos += de_len;
|
ctx->pos += de_len;
|
||||||
|
|
||||||
continue;
|
|
||||||
}
|
}
|
||||||
if (bh)
|
if (bh)
|
||||||
brelse(bh);
|
brelse(bh);
|
||||||
|
Reference in New Issue
Block a user