diff options
author | Julia Lawall <julia@diku.dk> | 2010-10-15 13:00:06 (GMT) |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2010-10-15 19:57:44 (GMT) |
commit | 0d91f22b75347d9503b17a42b6c74d3f7750acd6 (patch) | |
tree | 55167f95c826e3023bdc1cc436d282a02e7f8bad /drivers/rtc | |
parent | 6cf9e995f91e5bbffb2bef85feef490e5b67605d (diff) | |
download | linux-fsl-qoriq-0d91f22b75347d9503b17a42b6c74d3f7750acd6.tar.xz |
drivers/net/wireless/p54/eeprom.c: Return -ENOMEM on memory allocation failure
In this code, 0 is returned on memory allocation failure, even though other
failures return -ENOMEM or other similar values.
A simplified version of the semantic match that finds this problem is as
follows: (http://coccinelle.lip6.fr/)
// <smpl>
@@
expression ret;
expression x,e1,e2,e3;
@@
ret = 0
... when != ret = e1
*x = \(kmalloc\|kcalloc\|kzalloc\)(...)
... when != ret = e2
if (x == NULL) { ... when != ret = e3
return ret;
}
// </smpl>
Signed-off-by: Julia Lawall <julia@diku.dk>
Cc: <stable@kernel.org>
Acked-by: Christian Lamparter <chunkeey@googlemail.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/rtc')
0 files changed, 0 insertions, 0 deletions