提交 4a4206a8 编写于 作者: N Navid Emamdoost 提交者: Greg Kroah-Hartman

iio: imu: adis16400: release allocated memory on failure

[ Upstream commit ab612b1daf415b62c58e130cb3d0f30b255a14d0 ]

In adis_update_scan_mode, if allocation for adis->buffer fails,
previously allocated adis->xfer needs to be released.
Signed-off-by: NNavid Emamdoost <navid.emamdoost@gmail.com>
Reviewed-by: NAlexandru Ardelean <alexandru.ardelean@analog.com>
Signed-off-by: NJonathan Cameron <Jonathan.Cameron@huawei.com>
Signed-off-by: NSasha Levin <sashal@kernel.org>
上级 f2824a02
...@@ -39,8 +39,11 @@ int adis_update_scan_mode(struct iio_dev *indio_dev, ...@@ -39,8 +39,11 @@ int adis_update_scan_mode(struct iio_dev *indio_dev,
return -ENOMEM; return -ENOMEM;
adis->buffer = kcalloc(indio_dev->scan_bytes, 2, GFP_KERNEL); adis->buffer = kcalloc(indio_dev->scan_bytes, 2, GFP_KERNEL);
if (!adis->buffer) if (!adis->buffer) {
kfree(adis->xfer);
adis->xfer = NULL;
return -ENOMEM; return -ENOMEM;
}
rx = adis->buffer; rx = adis->buffer;
tx = rx + scan_count; tx = rx + scan_count;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册