[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <4BA76586.6040200@jic23.retrosnub.co.uk>
Date: Mon, 22 Mar 2010 12:41:42 +0000
From: Jonathan Cameron <kernel@...23.retrosnub.co.uk>
To: Wolfram Sang <w.sang@...gutronix.de>
CC: kernel-janitors@...r.kernel.org, linux-i2c@...r.kernel.org,
linux-kernel@...r.kernel.org, Greg Kroah-Hartman <gregkh@...e.de>,
devel@...verdev.osuosl.org
Subject: Re: [PATCH 22/24] staging/iio/light: fix dangling pointers
On 03/20/10 14:13, Wolfram Sang wrote:
> Fix I2C-drivers which missed setting clientdata to NULL before freeing the
> structure it points to. Also fix drivers which do this _after_ the structure
> was freed already.
>
> Signed-off-by: Wolfram Sang <w.sang@...gutronix.de>
> Cc: Greg Kroah-Hartman <gregkh@...e.de>
Acked-by: Jonathan Cameron <jic23@....ac.uk>
Thanks for this one as well!
> ---
>
> Found using coccinelle, then reviewed. Full patchset is available via
> kernel-janitors, linux-i2c, and LKML.
> ---
> drivers/staging/iio/light/tsl2563.c | 2 ++
> 1 files changed, 2 insertions(+), 0 deletions(-)
>
> diff --git a/drivers/staging/iio/light/tsl2563.c b/drivers/staging/iio/light/tsl2563.c
> index 78b9432..286559d 100644
> --- a/drivers/staging/iio/light/tsl2563.c
> +++ b/drivers/staging/iio/light/tsl2563.c
> @@ -681,6 +681,7 @@ static int __devinit tsl2563_probe(struct i2c_client *client,
> fail2:
> iio_device_unregister(chip->indio_dev);
> fail1:
> + i2c_set_clientdata(client, NULL);
> kfree(chip);
> return err;
> }
> @@ -691,6 +692,7 @@ static int tsl2563_remove(struct i2c_client *client)
>
> iio_device_unregister(chip->indio_dev);
>
> + i2c_set_clientdata(client, NULL);
> kfree(chip);
> return 0;
> }
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists