Ingo Oeser 322f74a432 [IPV6]: Cleanups for net/ipv6/addrconf.c (kzalloc, early exit) v2
Here are some possible (and trivial) cleanups.
- use kzalloc() where possible
- invert allocation failure test like
  if (object) {
        /* Rest of function here */
  }
  to

  if (object == NULL)
        return NULL;

  /* Rest of function here */

Signed-off-by: Ingo Oeser <ioe-lkml@rameria.de>
Acked-by: YOSHIFUJI Hideaki <yoshfuji@linux-ipv6.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
2006-03-20 23:01:47 -08:00
..
2006-03-20 22:35:41 -08:00
2006-03-19 13:20:06 -08:00
2006-03-20 22:33:17 -08:00
2006-01-11 18:42:14 -08:00
2006-02-09 16:59:48 -08:00
2006-03-20 22:33:17 -08:00
2005-08-29 15:31:14 -07:00
2006-01-11 18:42:14 -08:00
2006-01-17 13:03:54 -08:00
2006-03-20 22:35:41 -08:00
2006-03-20 22:38:33 -08:00
2006-03-20 22:35:41 -08:00
2006-01-11 18:42:14 -08:00
2006-03-20 22:40:54 -08:00
2006-02-07 01:47:12 -05:00
2006-01-12 14:06:31 -08:00
2006-01-03 13:11:17 -08:00
2006-03-20 22:33:17 -08:00
2005-04-16 15:20:36 -07:00