]> git.baikalelectronics.ru Git - kernel.git/commit
drivers/ata: Move a dereference below a NULL test
authorJulia Lawall <julia@diku.dk>
Sat, 11 Jul 2009 07:49:48 +0000 (09:49 +0200)
committerJeff Garzik <jgarzik@redhat.com>
Wed, 15 Jul 2009 02:42:51 +0000 (22:42 -0400)
commit604e37ad811d626ede92a92ced391f4c9a435dc1
treee112d0f728f33ba9376af26c703472b97a53f60b
parenta0a0d44e576cc0c5051fc39f36110ceea97c66a0
drivers/ata: 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: Jeff Garzik <jgarzik@redhat.com>
drivers/ata/pata_at91.c