Commit 6cf92e98 authored by Michal Januszewski's avatar Michal Januszewski Committed by David S. Miller

[CONNECTOR]: Fix a spurious kfree_skb() call

Remove a spurious call to kfree_skb() in the connector rx_skb handler.

This fixes a regression introduced by the '[NET]: make netlink user ->
kernel interface synchronious' patch (cd40b7d3)
Signed-off-by: default avatarMichal Januszewski <spock@gentoo.org>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent be48be08
...@@ -218,7 +218,7 @@ static void cn_rx_skb(struct sk_buff *__skb) ...@@ -218,7 +218,7 @@ static void cn_rx_skb(struct sk_buff *__skb)
skb->len < nlh->nlmsg_len || skb->len < nlh->nlmsg_len ||
nlh->nlmsg_len > CONNECTOR_MAX_MSG_SIZE) { nlh->nlmsg_len > CONNECTOR_MAX_MSG_SIZE) {
kfree_skb(skb); kfree_skb(skb);
goto out; return;
} }
len = NLMSG_ALIGN(nlh->nlmsg_len); len = NLMSG_ALIGN(nlh->nlmsg_len);
...@@ -229,9 +229,6 @@ static void cn_rx_skb(struct sk_buff *__skb) ...@@ -229,9 +229,6 @@ static void cn_rx_skb(struct sk_buff *__skb)
if (err < 0) if (err < 0)
kfree_skb(skb); kfree_skb(skb);
} }
out:
kfree_skb(__skb);
} }
/* /*
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment