From mboxrd@z Thu Jan 1 00:00:00 1970 From: Liam Girdwood Date: Mon, 22 Aug 2011 10:21:04 +0000 Subject: Re: [PATCH] sound/soc/mxs/mxs-saif.c: add missing kfree Message-Id: <4E522D90.6080805@ti.com> List-Id: References: <1313820761-12042-3-git-send-email-julia@diku.dk> <20110820134439.GA2266@pengutronix.de> <65EE16ACC360FA4D99C96DC085B3F7722212DF@039-SN1MPN1-001.039d.mgd.msft.net> In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: Julia Lawall Cc: "alsa-devel@alsa-project.org" , Takashi Iwai , "linux-kernel@vger.kernel.org" , Mark Brown , "kernel-janitors@vger.kernel.org" , Wolfram Sang , Dong Aisheng-B29396 On 21/08/11 12:18, Julia Lawall wrote: > From: Julia Lawall > > Move the test on pdev->id before the kzalloc to avoid requiring kfree when > the test fails. This fix was suggested by Wolfram Sang. > > A simplified version of the semantic match that finds this problem is as > follows: (http://coccinelle.lip6.fr/) > > // > @@ > identifier x; > expression E1!=0,E2,E3,E4; > statement S; > iterator I; > @@ > > ( > if (...) { ... when != kfree(x) > when != x = E3 > when != E3 = x > * return ...; > } > ... when != x = E2 > when != I(...,x,...) S > if (...) { ... when != x = E4 > kfree(x); ... return ...; } > ) > // > > Signed-off-by: Julia Lawall > > Acked-by: Liam Girdwood