mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-29 15:14:18 +08:00
net/mlx5: Fix uninitialized variable bug in outlen_write()
If sscanf() return 0, outlen is uninitialized and used in kzalloc(),
this is unexpected. We should return -EINVAL if the string is invalid.
Fixes: e126ba97db
("mlx5: Add driver for Mellanox Connect-IB adapters")
Signed-off-by: YueHaibing <yuehaibing@huawei.com>
Reviewed-by: Leon Romanovsky <leonro@nvidia.com>
Signed-off-by: Saeed Mahameed <saeedm@nvidia.com>
This commit is contained in:
parent
e87c6a832f
commit
3f5769a074
@ -1497,8 +1497,8 @@ static ssize_t outlen_write(struct file *filp, const char __user *buf,
|
|||||||
return -EFAULT;
|
return -EFAULT;
|
||||||
|
|
||||||
err = sscanf(outlen_str, "%d", &outlen);
|
err = sscanf(outlen_str, "%d", &outlen);
|
||||||
if (err < 0)
|
if (err != 1)
|
||||||
return err;
|
return -EINVAL;
|
||||||
|
|
||||||
ptr = kzalloc(outlen, GFP_KERNEL);
|
ptr = kzalloc(outlen, GFP_KERNEL);
|
||||||
if (!ptr)
|
if (!ptr)
|
||||||
|
Loading…
Reference in New Issue
Block a user