1
0
Fork 0
alistair23-linux/drivers/net/hamradio
Julia Lawall 0397a26484 drivers/net/hamradio/6pack.c: move a dereference below a NULL test
In each case, 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: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
2009-01-11 00:06:34 -08:00
..
6pack.c drivers/net/hamradio/6pack.c: move a dereference below a NULL test 2009-01-11 00:06:34 -08:00
Kconfig Documentation: Fix erroneous "dmascc=" documentation 2007-10-20 00:11:36 +02:00
Makefile Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
baycom_epp.c drivers/net: Kill now superfluous ->last_rx stores. 2008-11-03 21:11:17 -08:00
baycom_par.c [PARPORT] Remove unused 'irq' argument from parport irq functions 2007-10-23 19:53:16 -04:00
baycom_ser_fdx.c drivers/net: use nr_irqs 2008-10-16 16:52:05 +02:00
baycom_ser_hdx.c IRQ: Maintain regs pointer globally rather than passing to IRQ handlers 2006-10-05 15:10:12 +01:00
bpqether.c drivers/net: Kill now superfluous ->last_rx stores. 2008-11-03 21:11:17 -08:00
dmascc.c netdevice hamradio: Convert directly reference of netdev->priv 2008-11-20 01:02:05 -08:00
hdlcdrv.c drivers/net: Kill now superfluous ->last_rx stores. 2008-11-03 21:11:17 -08:00
mkiss.c drivers/net/hamradio: Move a dereference below a NULL test 2008-12-16 15:43:29 -08:00
scc.c netdevice hamradio: Convert directly reference of netdev->priv 2008-11-20 01:02:05 -08:00
yam.c drivers/net: Kill now superfluous ->last_rx stores. 2008-11-03 21:11:17 -08:00
yam1200.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
yam9600.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
z8530.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00