[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <CAJK669Yb6V=xr9ZvQGOKGEvmzO1JGhrHD+sR69b04EQxUjOOrQ@mail.gmail.com>
Date: Fri, 2 Sep 2011 11:40:23 +0200
From: Sjur Brændeland <sjurbren@...il.com>
To: Dan Carpenter <error27@...il.com>
Cc: "David S. Miller" <davem@...emloft.net>,
"open list:CAIF NETWORK LAYER" <netdev@...r.kernel.org>,
kernel-janitors@...r.kernel.org
Subject: Re: [patch -next] caif: add error handling for allocation
Hi Dan,
...
> switch (phy_type) {
> case CFPHYTYPE_FRAG:
> phy_driver =
> cfserl_create(CFPHYTYPE_FRAG, phyid, stx);
> if (!phy_driver)
> - goto out;
> + goto out_err;
> break;
...
> -out:
> + mutex_unlock(&cnfg->lock);
> + return;
> +
> +out_err:
> + kfree(phyinfo);
> mutex_unlock(&cnfg->lock);
Thank you for your patch.
When reviewing this I found another potential memory leak as well.
If cffrml_create fails, we might be leaking the phy_driver.
So perhaps you could do kfree(phy_driver) in out_err: as well, while
you are at it?
Regards,
Sjur
Powered by blists - more mailing lists