diff options
author | Denis V. Lunev <den@openvz.org> | 2008-07-11 03:53:39 +0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2008-07-11 03:53:39 +0400 |
commit | fe785bee05f08d37b34b7399d003b74199274ce4 (patch) | |
tree | d87c30deefc4c35d5794879b3430470d554ae2a6 /net/netlabel/netlabel_cipso_v4.c | |
parent | 2e655571c618434c24ac2ca989374fdd84470d6d (diff) | |
download | linux-fe785bee05f08d37b34b7399d003b74199274ce4.tar.xz |
netlabel: netlink_unicast calls kfree_skb on error path by itself
So, no need to kfree_skb here on the error path. In this case we can
simply return.
Signed-off-by: Denis V. Lunev <den@openvz.org>
Acked-by: Paul Moore <paul.moore@hp.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/netlabel/netlabel_cipso_v4.c')
-rw-r--r-- | net/netlabel/netlabel_cipso_v4.c | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/net/netlabel/netlabel_cipso_v4.c b/net/netlabel/netlabel_cipso_v4.c index fdc14a0d21af..9080c61b71a5 100644 --- a/net/netlabel/netlabel_cipso_v4.c +++ b/net/netlabel/netlabel_cipso_v4.c @@ -584,12 +584,7 @@ list_start: rcu_read_unlock(); genlmsg_end(ans_skb, data); - - ret_val = genlmsg_reply(ans_skb, info); - if (ret_val != 0) - goto list_failure; - - return 0; + return genlmsg_reply(ans_skb, info); list_retry: /* XXX - this limit is a guesstimate */ |