Commit e8d46b38 authored by Colin Ian King's avatar Colin Ian King Committed by Jan Kara
Browse files

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: default avatarColin Ian King <colin.king@canonical.com>
Signed-off-by: default avatarJan Kara <jack@suse.cz>
parent 65ffb3d6
Loading
Loading
Loading
Loading
+0 −2
Original line number Diff line number Diff line
@@ -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);