From: Julia Lawall Date: Sun, 19 Jul 2009 15:26:13 +0000 (+0200) Subject: HID: Move dereferences below a NULL test X-Git-Tag: v2.6.31-rc4~14^2 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=76c317d6e5cb7f58541879006d39774596962715;p=pandora-kernel.git HID: Move dereferences below a NULL test If the NULL test is necessary, then the dereferences 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,E1; identifier i,fld; statement S; @@ - T i = E->fld; + T i; ... when != E=E1 when != i if (E == NULL||...) S + i = E->fld; // Signed-off-by: Julia Lawall Signed-off-by: Jiri Kosina --- Reading git-diff-tree failed