提交 47e151c0 编写于 作者: C Colin Ian King 提交者: Xie XiuQi

ext4: unsigned int compared against zero

mainline inclusion
from mainline-5.2-rc1
commit fbbbbd2f
category: bugfix
bugzilla: 16402
CVE: NA
---------------------------

There are two cases where u32 variables n and err are being checked
for less than zero error values, the checks is always false because
the variables are not signed. Fix this by making the variables ints.

Addresses-Coverity: ("Unsigned compared against 0")
Fixes: 345c0dbf ("ext4: protect journal inode's blocks using block_validity")
Signed-off-by: NColin Ian King <colin.king@canonical.com>
Signed-off-by: NTheodore Ts'o <tytso@mit.edu>
Signed-off-by: Nyangerkun <yangerkun@huawei.com>
Reviewed-by: Nzhangyi (F) <yi.zhang@huawei.com>
Signed-off-by: NYang Yingliang <yangyingliang@huawei.com>
上级 3ddd4d87
...@@ -142,7 +142,8 @@ static int ext4_protect_reserved_inode(struct super_block *sb, u32 ino) ...@@ -142,7 +142,8 @@ static int ext4_protect_reserved_inode(struct super_block *sb, u32 ino)
struct inode *inode; struct inode *inode;
struct ext4_sb_info *sbi = EXT4_SB(sb); struct ext4_sb_info *sbi = EXT4_SB(sb);
struct ext4_map_blocks map; struct ext4_map_blocks map;
u32 i = 0, err = 0, num, n; u32 i = 0, num;
int err = 0, n;
if ((ino < EXT4_ROOT_INO) || if ((ino < EXT4_ROOT_INO) ||
(ino > le32_to_cpu(sbi->s_es->s_inodes_count))) (ino > le32_to_cpu(sbi->s_es->s_inodes_count)))
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册