diff options
-rw-r--r-- | net/bluetooth/6lowpan.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/net/bluetooth/6lowpan.c b/net/bluetooth/6lowpan.c index 58e1b3c97ed7..8a4cc2f7f0db 100644 --- a/net/bluetooth/6lowpan.c +++ b/net/bluetooth/6lowpan.c | |||
@@ -307,6 +307,9 @@ static int recv_pkt(struct sk_buff *skb, struct net_device *dev, | |||
307 | 307 | ||
308 | /* check that it's our buffer */ | 308 | /* check that it's our buffer */ |
309 | if (lowpan_is_ipv6(*skb_network_header(skb))) { | 309 | if (lowpan_is_ipv6(*skb_network_header(skb))) { |
310 | /* Pull off the 1-byte of 6lowpan header. */ | ||
311 | skb_pull(skb, 1); | ||
312 | |||
310 | /* Copy the packet so that the IPv6 header is | 313 | /* Copy the packet so that the IPv6 header is |
311 | * properly aligned. | 314 | * properly aligned. |
312 | */ | 315 | */ |