]> git.baikalelectronics.ru Git - kernel.git/commit
sound/soc/kirkwood/kirkwood-i2s.c: add missing kfree
authorJulia Lawall <julia@diku.dk>
Sat, 20 Aug 2011 06:12:38 +0000 (08:12 +0200)
committerMark Brown <broonie@opensource.wolfsonmicro.com>
Mon, 22 Aug 2011 22:26:56 +0000 (23:26 +0100)
commite5693022dbba1d5343a5ad2a596f7f7a2f2e6cd0
treea33df4d7a7e64e9a4c89a639ef4b3ebd71e31e0b
parent0c258b9e880edd0b8b8a80ee446494134626d14b
sound/soc/kirkwood/kirkwood-i2s.c: add missing kfree

Adjust the goto to jump to the error handling code that includes kfree.

A simplified version of the semantic match that finds this problem is as
follows: (http://coccinelle.lip6.fr/)

// <smpl>
@@
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 ...; }
)
// </smpl>

Signed-off-by: Julia Lawall <julia@diku.dk>
Acked-by: Liam Girdwood <lrg@ti.com>
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
sound/soc/kirkwood/kirkwood-i2s.c