https://github.com/torvalds/linux
Revision 96101bd0bf7974686f6875c065a7a9a83cd2107a authored by Julia Lawall on 20 August 2011, 06:12:38 UTC, committed by Mark Brown on 22 August 2011, 22:26:56 UTC
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>
1 parent 57cf9d4
History
Tip revision: 96101bd0bf7974686f6875c065a7a9a83cd2107a authored by Julia Lawall on 20 August 2011, 06:12:38 UTC
sound/soc/kirkwood/kirkwood-i2s.c: add missing kfree
Tip revision: 96101bd

back to top