commit | a51482bde22f99c63fbbb57d5d46cc666384e379 | [log] [tgz] |
---|---|---|
author | Jesper Juhl <[email protected]> | Tue Nov 08 09:41:34 2005 -0800 |
committer | David S. Miller <[email protected]> | Tue Nov 08 09:41:34 2005 -0800 |
tree | 5482ed1c0803edb2ffbd51035de921fb0f72d82b | |
parent | ac7c98eca88a854755475fcfe1b2bf5f97f90d99 [diff] [blame] |
[NET]: kfree cleanup From: Jesper Juhl <[email protected]> This is the net/ part of the big kfree cleanup patch. Remove pointless checks for NULL prior to calling kfree() in net/. Signed-off-by: Jesper Juhl <[email protected]> Cc: "David S. Miller" <[email protected]> Cc: Arnaldo Carvalho de Melo <[email protected]> Acked-by: Marcel Holtmann <[email protected]> Acked-by: YOSHIFUJI Hideaki <[email protected]> Signed-off-by: Andrew Morton <[email protected]>
diff --git a/net/sched/cls_route.c b/net/sched/cls_route.c index 02996ac..520ff71 100644 --- a/net/sched/cls_route.c +++ b/net/sched/cls_route.c
@@ -525,8 +525,7 @@ return 0; errout: - if (f) - kfree(f); + kfree(f); return err; }