|
@@ -91,11 +91,12 @@ int iptunnel_pull_header(struct sk_buff *skb, int hdr_len, __be16 inner_proto)
|
|
|
skb_pull_rcsum(skb, hdr_len);
|
|
|
|
|
|
if (inner_proto == htons(ETH_P_TEB)) {
|
|
|
- struct ethhdr *eh = (struct ethhdr *)skb->data;
|
|
|
+ struct ethhdr *eh;
|
|
|
|
|
|
if (unlikely(!pskb_may_pull(skb, ETH_HLEN)))
|
|
|
return -ENOMEM;
|
|
|
|
|
|
+ eh = (struct ethhdr *)skb->data;
|
|
|
if (likely(ntohs(eh->h_proto) >= ETH_P_802_3_MIN))
|
|
|
skb->protocol = eh->h_proto;
|
|
|
else
|