diff options
author | Herbert Xu <herbert@gondor.apana.org.au> | 2006-02-04 11:09:34 +0100 |
---|---|---|
committer | David S. Miller <davem@sunset.davemloft.net> | 2006-02-05 08:51:14 +0100 |
commit | fa60cf7f64a00c16e95717e8dccdb128877e342a (patch) | |
tree | ec8ca75f79971c6bd2b3754b6207a4adce51e37c /net/ipv4 | |
parent | [PATCH] x86_64: IOMMU printk cleanup (diff) | |
download | linux-fa60cf7f64a00c16e95717e8dccdb128877e342a.tar.xz linux-fa60cf7f64a00c16e95717e8dccdb128877e342a.zip |
[ICMP]: Fix extra dst release when ip_options_echo fails
When two ip_route_output_key lookups in icmp_send were combined I
forgot to change the error path for ip_options_echo to not drop the
dst reference since it now sits before the dst lookup. To fix it we
simply jump past the ip_rt_put call.
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv4')
-rw-r--r-- | net/ipv4/icmp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ipv4/icmp.c b/net/ipv4/icmp.c index 6bc0887b0834..4d1c40972a4b 100644 --- a/net/ipv4/icmp.c +++ b/net/ipv4/icmp.c @@ -524,7 +524,7 @@ void icmp_send(struct sk_buff *skb_in, int type, int code, u32 info) iph->tos; if (ip_options_echo(&icmp_param.replyopts, skb_in)) - goto ende; + goto out_unlock; /* |