diff options
author | Julia Lawall <julia@diku.dk> | 2009-07-30 04:38:19 +0000 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2009-07-30 10:58:28 -0700 |
commit | ca7daea612b480ecf0fc5bd1630b88447fe73fc5 (patch) | |
tree | 4fa3d875d3fdc7a3e33cac4a5e20d78d77948685 /Documentation/ia64 | |
parent | a1b97440eec0ea3e53183cde8fe82ff8c1ffb091 (diff) |
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>
Diffstat (limited to 'Documentation/ia64')
0 files changed, 0 insertions, 0 deletions