diff options
author | RongQing.Li <roy.qing.li@gmail.com> | 2012-01-12 17:33:46 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2012-01-13 13:10:46 -0500 |
commit | 252c3d84ed398b090ac2dace46fc6faa6cfaea99 (patch) | |
tree | afbeb033aa2857971aff3919c39f3c0b04c340f3 | |
parent | 099469502f62fbe0d7e4f0b83a2f22538367f734 (diff) |
ipv6: release idev when ip6_neigh_lookup failed in icmp6_dst_alloc
release idev when ip6_neigh_lookup failed in icmp6_dst_alloc
Signed-off-by: RongQing.Li <roy.qing.li@gmail.com>
Acked-by: Eric Dumazet <eric.dumazet@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
-rw-r--r-- | net/ipv6/route.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/net/ipv6/route.c b/net/ipv6/route.c index 07361dfa8085..8c2e3ab58f2a 100644 --- a/net/ipv6/route.c +++ b/net/ipv6/route.c | |||
@@ -1091,6 +1091,7 @@ struct dst_entry *icmp6_dst_alloc(struct net_device *dev, | |||
1091 | else { | 1091 | else { |
1092 | neigh = ip6_neigh_lookup(&rt->dst, &fl6->daddr); | 1092 | neigh = ip6_neigh_lookup(&rt->dst, &fl6->daddr); |
1093 | if (IS_ERR(neigh)) { | 1093 | if (IS_ERR(neigh)) { |
1094 | in6_dev_put(idev); | ||
1094 | dst_free(&rt->dst); | 1095 | dst_free(&rt->dst); |
1095 | return ERR_CAST(neigh); | 1096 | return ERR_CAST(neigh); |
1096 | } | 1097 | } |