aboutsummaryrefslogtreecommitdiffstats
path: root/net/core/rtnetlink.c
diff options
context:
space:
mode:
authorThomas Graf <tgraf@suug.ch>2006-08-31 15:04:30 -0700
committerDavid S. Miller <davem@sunset.davemloft.net>2006-09-22 15:18:43 -0700
commit3015d5d4e5b15eddea272a697e83391100581932 (patch)
treefee65f53db7fc175f5a286dd036eae602a14cf8d /net/core/rtnetlink.c
parent[AF_UNIX]: Change max_dgram_qlen sysctl to __read_mostly (diff)
downloadlinux-dev-3015d5d4e5b15eddea272a697e83391100581932.tar.xz
linux-dev-3015d5d4e5b15eddea272a697e83391100581932.zip
[RTNETLINK]: Fix typo causing wrong skb to be freed
A typo introduced by myself which leads to freeing the skb containing the netlink message when it should free the newly allocated skb for the reply. Signed-off-by: Thomas Graf <tgraf@suug.ch> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/core/rtnetlink.c')
-rw-r--r--net/core/rtnetlink.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/core/rtnetlink.c b/net/core/rtnetlink.c
index 0ebcf8488e99..63b882ac288a 100644
--- a/net/core/rtnetlink.c
+++ b/net/core/rtnetlink.c
@@ -596,7 +596,7 @@ static int rtnl_getlink(struct sk_buff *skb, struct nlmsghdr* nlh, void *arg)
err = rtnl_fill_ifinfo(nskb, dev, iw, iw_buf_len, RTM_NEWLINK,
NETLINK_CB(skb).pid, nlh->nlmsg_seq, 0, 0);
if (err <= 0) {
- kfree_skb(skb);
+ kfree_skb(nskb);
goto errout;
}