]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
iio: inkern: fix a NULL dereference on error
authorDan Carpenter <dan.carpenter@oracle.com>
Tue, 26 Jan 2016 09:25:21 +0000 (12:25 +0300)
committerLuis Henriques <luis.henriques@canonical.com>
Thu, 25 Feb 2016 00:18:38 +0000 (00:18 +0000)
commit d81dac3c1c5295c61b15293074ac2bd3254e1875 upstream.

In twl4030_bci_probe() there are some failure paths where we call
iio_channel_release() with a NULL pointer.  (Apparently, that driver can
opperate without a valid channel pointer).  Let's fix it by adding a
NULL check in iio_channel_release().

Fixes: 2202e1fc5a29 ('drivers: power: twl4030_charger: fix link problems when building as module')
Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: Jonathan Cameron <jic23@kernel.org>
Signed-off-by: Luis Henriques <luis.henriques@canonical.com>
drivers/iio/inkern.c

index f0846108d0067b4a979f3c3b86624b6e211cfa76..3978c0d89ae152f472bf9a719457bb11facc67ed 100644 (file)
@@ -325,6 +325,8 @@ EXPORT_SYMBOL_GPL(iio_channel_get);
 
 void iio_channel_release(struct iio_channel *channel)
 {
+       if (!channel)
+               return;
        iio_device_put(channel->indio_dev);
        kfree(channel);
 }