[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20110830191937.GA8689@suse.de>
Date: Tue, 30 Aug 2011 12:19:37 -0700
From: Greg KH <gregkh@...e.de>
To: Rajan Aggarwal <rajan.aggarwal85@...il.com>
Cc: linux-kernel@...r.kernel.org
Subject: Re: [PATCH 1/1] Free fw_priv in fw_create_instance
On Wed, Aug 31, 2011 at 12:36:32AM +0530, Rajan Aggarwal wrote:
> fw_priv is not being freed in some of the error scenarios in
> fw_create_instance.
Not true.
> This patch makes sure that this is kfreed properly in all error
> situations in the fw_create_instance logic where it is required.
Nope, this will cause a double-free to happen.
> Signed-off-by: Rajan Aggarwal <rajan.aggarwal85@...il.com>
> ---
> drivers/base/firmware_class.c | 1 +
> 1 files changed, 1 insertions(+), 0 deletions(-)
>
> diff --git a/drivers/base/firmware_class.c b/drivers/base/firmware_class.c
> index 06ed6b4..3ddbc48 100644
> --- a/drivers/base/firmware_class.c
> +++ b/drivers/base/firmware_class.c
> @@ -497,6 +497,7 @@ err_del_dev:
> device_del(f_dev);
> err_put_dev:
> put_device(f_dev);
> + kfree(fw_priv);
Did you test this patch out? What happened when you tested it?
How did you find this "problem"?
Care to look a bit closer at the code?
I'd give you a hint, but it's more sporting this way :)
thanks,
greg k-h
--
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