aboutsummaryrefslogtreecommitdiffstats
path: root/net/ax25/ax25_in.c
diff options
context:
space:
mode:
authorRalf Baechle <ralf@linux-mips.org>2005-10-05 12:16:04 -0700
committerDavid S. Miller <davem@davemloft.net>2005-10-05 12:16:04 -0700
commit3a867b36c3234673e61f883ebc11ad18f80a176f (patch)
tree1964810d9545edb884687934994561316d042e08 /net/ax25/ax25_in.c
parent[IPSEC]: Document that policy direction is derived from the index. (diff)
downloadlinux-dev-3a867b36c3234673e61f883ebc11ad18f80a176f.tar.xz
linux-dev-3a867b36c3234673e61f883ebc11ad18f80a176f.zip
[AX.25]: Fix packet socket crash
Since changeset 98a82febb6340466824c3a453738d4fbd05db81a AX.25 is passing received IP and ARP packets to the stack through netif_rx() but we don't set the skb->mac.raw to right value which may result in a crash with applications that use a packet socket. Signed-off-by: Ralf Baechle DL5RB <ralf@linux-mips.org> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ax25/ax25_in.c')
-rw-r--r--net/ax25/ax25_in.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ax25/ax25_in.c b/net/ax25/ax25_in.c
index 810c9c76c2e0..73cfc3411c46 100644
--- a/net/ax25/ax25_in.c
+++ b/net/ax25/ax25_in.c
@@ -123,7 +123,7 @@ int ax25_rx_iframe(ax25_cb *ax25, struct sk_buff *skb)
}
skb_pull(skb, 1); /* Remove PID */
- skb->h.raw = skb->data;
+ skb->mac.raw = skb->nh.raw;
skb->nh.raw = skb->data;
skb->dev = ax25->ax25_dev->dev;
skb->pkt_type = PACKET_HOST;