]> git.karo-electronics.de Git - karo-tx-linux.git/commit
[S390] drivers/s390/block/dasd_ioctl.c: add missing kfree
authorJulia Lawall <julia@diku.dk>
Mon, 22 Aug 2011 06:59:07 +0000 (08:59 +0200)
committerMartin Schwidefsky <schwidefsky@de.ibm.com>
Mon, 22 Aug 2011 06:59:23 +0000 (08:59 +0200)
commitca69e255a695de12fe861be794168a0fa7f2fce9
tree2f2fa9e737e30523ef8ada17d12b69f506587b65
parent283f11bfbac85c8fdcd688c34bd76e383d90c01e
[S390] drivers/s390/block/dasd_ioctl.c: add missing kfree

Data is only used to temporarily hold information to be copied to the user
level, so it should be freed before leaving the function.

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

// <smpl>
@exists@
local idexpression x;
statement S,S1;
expression E;
identifier fl;
expression *ptr != NULL;
@@

x = \(kmalloc\|kzalloc\|kcalloc\)(...);
...
if (x == NULL) S
<... when != x
     when != if (...) { <+...kfree(x)...+> }
     when any
     when != true x == NULL
x->fl
...>
(
if (x == NULL) S1
|
if (...) { ... when != x
               when forall
(
 return \(0\|<+...x...+>\|ptr\);
|
* return ...;
)
}
)
// </smpl>

Signed-off-by: Julia Lawall <julia@diku.dk>
Signed-off-by: Heiko Carstens <heiko.carstens@de.ibm.com>
Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
drivers/s390/block/dasd_ioctl.c