From: Julia Lawall Date: Mon, 28 Dec 2009 14:09:55 +0000 (-0300) Subject: V4L/DVB (13954): Correct NULL test X-Git-Tag: v2.6.34-rc1~280^2~278 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3557aa4f7ddaec2903532595d2caccac32a5bbeb;p=pandora-kernel.git V4L/DVB (13954): 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/) // @r@ identifier f; @@ f(...) { <+... return NULL; ...+> } @@ expression *x; expression y; identifier r.f; statement S; @@ x = f(...); ( if ((x) == NULL) S | if ( - y + x == NULL) S ) // Signed-off-by: Julia Lawall Signed-off-by: Mauro Carvalho Chehab --- Reading git-diff-tree failed