diff options
author | 2009-07-11 09:50:09 +0200 | |
---|---|---|
committer | 2009-07-15 16:56:48 +1000 | |
commit | ecca0683230b83e8f830ff157911fad20bc43015 (patch) | |
tree | 95d69ae4726d58b80a44fb7c9ef3702b5e5e34a6 /include/linux/kernel.h | |
parent | fb/intelfb: conflict with DRM_I915 and hide by default (diff) | |
download | wireguard-linux-ecca0683230b83e8f830ff157911fad20bc43015.tar.xz wireguard-linux-ecca0683230b83e8f830ff157911fad20bc43015.zip |
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/)
// <smpl>
@@
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;
// </smpl>
Signed-off-by: Julia Lawall <julia@diku.dk>
Signed-off-by: Dave Airlie <airlied@linux.ie>
Diffstat (limited to 'include/linux/kernel.h')
0 files changed, 0 insertions, 0 deletions