From: Julia Lawall Date: Sat, 11 Jul 2009 07:50:09 +0000 (+0200) Subject: drm: Move a dereference below a NULL test X-Git-Tag: v2.6.31-rc4~29^2 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ecca0683230b83e8f830ff157911fad20bc43015;p=pandora-kernel.git drm: Move a dereference below a NULL test If the NULL test is necessary, then the dereference should be moved below the NULL test. The semantic patch that makes this change is as follows: (http://www.emn.fr/x-info/coccinelle/) // @@ type T; expression E; identifier i,fld; statement S; @@ - T i = E->fld; + T i; ... when != E when != i if (E == NULL) S + i = E->fld; // Signed-off-by: Julia Lawall Signed-off-by: Dave Airlie --- Reading git-diff-tree failed