net/netlabel: Add kmalloc NULL tests
authorJulia Lawall <julia@diku.dk>
Thu, 30 Jul 2009 04:38:19 +0000 (04:38 +0000)
committerDavid S. Miller <davem@davemloft.net>
Thu, 30 Jul 2009 17:58:28 +0000 (10:58 -0700)
commitca7daea612b480ecf0fc5bd1630b88447fe73fc5
tree4fa3d875d3fdc7a3e33cac4a5e20d78d77948685
parenta1b97440eec0ea3e53183cde8fe82ff8c1ffb091
net/netlabel: Add kmalloc NULL tests

The test on map4 should be a test on map6.

The semantic match that finds this problem is as follows:
(http://www.emn.fr/x-info/coccinelle/)

// <smpl>
@@
expression *x;
identifier f;
constant char *C;
@@

x = \(kmalloc\|kcalloc\|kzalloc\)(...);
... when != x == NULL
    when != x != NULL
    when != (x || ...)
(
kfree(x)
|
f(...,C,...,x,...)
|
*f(...,x,...)
|
*x->f
)
// </smpl>

Signed-off-by: Julia Lawall <julia@diku.dk>
Acked-by: Paul Moore <paul.moore@hp.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/netlabel/netlabel_kapi.c