commit | ce739b473ce12d5ef067b39b8637bfd2b2174a15 | [log] [tgz] |
---|---|---|
author | Julia Lawall <julia@diku.dk> | Sun Dec 27 11:27:44 2009 +0000 |
committer | David S. Miller <davem@davemloft.net> | Sun Jan 03 21:42:49 2010 -0800 |
tree | cc95857da8afed8c429e9644977734c9b35f818f | |
parent | 073bd90f03d98bc3168865f21573c9b232777c13 [diff] |
drivers/net/can: Correct NULL test Test the just-allocated value for NULL rather than some other value. The semantic patch that makes this change is as follows: (http://coccinelle.lip6.fr/) // <smpl> @@ expression x,y; statement S; @@ x = \(kmalloc\|kcalloc\|kzalloc\)(...); ( if ((x) == NULL) S | if ( - y + x == NULL) S ) // </smpl> Signed-off-by: Julia Lawall <julia@diku.dk> Acked-by: Oliver Hartkopp <oliver@hartkopp.net> Signed-off-by: David S. Miller <davem@davemloft.net>