提交 ab612b1d 编写于 作者: N Navid Emamdoost 提交者: Jonathan Cameron

iio: imu: adis16400: release allocated memory on failure

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>
上级 dcb10920
...@@ -78,8 +78,11 @@ int adis_update_scan_mode(struct iio_dev *indio_dev, ...@@ -78,8 +78,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.
先完成此消息的编辑!
想要评论请 注册