Commit 3ad543d4 authored by Patrick McHardy's avatar Patrick McHardy Committed by Chris Wright

[PATCH] Fix DST leak in icmp_push_reply()

Based upon a bug report and initial patch by
Ollie Wild.
Signed-off-by: default avatarPatrick McHardy <kaber@trash.net>
Signed-off-by: default avatar"David S. Miller" <davem@davemloft.net>
Signed-off-by: default avatarChris Wright <chrisw@osdl.org>
parent 6e5ca4f1
...@@ -349,12 +349,12 @@ static void icmp_push_reply(struct icmp_bxm *icmp_param, ...@@ -349,12 +349,12 @@ static void icmp_push_reply(struct icmp_bxm *icmp_param,
{ {
struct sk_buff *skb; struct sk_buff *skb;
ip_append_data(icmp_socket->sk, icmp_glue_bits, icmp_param, if (ip_append_data(icmp_socket->sk, icmp_glue_bits, icmp_param,
icmp_param->data_len+icmp_param->head_len, icmp_param->data_len+icmp_param->head_len,
icmp_param->head_len, icmp_param->head_len,
ipc, rt, MSG_DONTWAIT); ipc, rt, MSG_DONTWAIT) < 0)
ip_flush_pending_frames(icmp_socket->sk);
if ((skb = skb_peek(&icmp_socket->sk->sk_write_queue)) != NULL) { else if ((skb = skb_peek(&icmp_socket->sk->sk_write_queue)) != NULL) {
struct icmphdr *icmph = skb->h.icmph; struct icmphdr *icmph = skb->h.icmph;
unsigned int csum = 0; unsigned int csum = 0;
struct sk_buff *skb1; struct sk_buff *skb1;
......
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