diff options
author | Axel Lin <axel.lin@ingics.com> | 2013-05-13 13:37:26 (GMT) |
---|---|---|
committer | Guenter Roeck <linux@roeck-us.net> | 2013-05-13 13:43:14 (GMT) |
commit | 159c8cddd9259e9379f37f0a69ddcbb01c4e8b77 (patch) | |
tree | a1cb16d4e7d1f0e5acc8e6e8e7d7aca48e957068 /drivers | |
parent | 169c05cd54473ba4cc37bf4d22e7631395d14f68 (diff) | |
download | linux-159c8cddd9259e9379f37f0a69ddcbb01c4e8b77.tar.xz |
hwmon: (iio_hwmon) Fix null pointer dereference
This patch fixes the null pointer dereference in goto error_release_channels
path when allocate memory for st fails.
Reported-by: Dan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: Axel Lin <axel.lin@ingics.com>
Signed-off-by: Guenter Roeck <linux@roeck-us.net>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/hwmon/iio_hwmon.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/hwmon/iio_hwmon.c b/drivers/hwmon/iio_hwmon.c index 368497f..52b77af 100644 --- a/drivers/hwmon/iio_hwmon.c +++ b/drivers/hwmon/iio_hwmon.c @@ -161,7 +161,7 @@ static int iio_hwmon_probe(struct platform_device *pdev) error_remove_group: sysfs_remove_group(&dev->kobj, &st->attr_group); error_release_channels: - iio_channel_release_all(st->channels); + iio_channel_release_all(channels); return ret; } |