commit | b4558ea93d66a43f7990d26f145fd4c54a01c9bf | [log] [tgz] |
---|---|---|
author | Jesper Juhl <jesper.juhl@gmail.com> | Fri Oct 28 16:53:13 2005 -0400 |
committer | Jeff Garzik <jgarzik@pobox.com> | Fri Oct 28 16:53:13 2005 -0400 |
tree | 70aa8ba4864f8ee994b7f5278f5045af6a646d34 | |
parent | 7380a78a973a8109c13cb0e47617c456b6f6e1f5 [diff] [blame] |
drivers/net: Remove pointless checks for NULL prior to calling kfree()
diff --git a/include/net/netrom.h b/include/net/netrom.h index a6bf6e0..a5ee53b 100644 --- a/include/net/netrom.h +++ b/include/net/netrom.h
@@ -136,8 +136,7 @@ static __inline__ void nr_neigh_put(struct nr_neigh *nr_neigh) { if (atomic_dec_and_test(&nr_neigh->refcount)) { - if (nr_neigh->digipeat != NULL) - kfree(nr_neigh->digipeat); + kfree(nr_neigh->digipeat); kfree(nr_neigh); } }