diff options
Diffstat (limited to 'net/batman-adv/gateway_client.c')
-rw-r--r-- | net/batman-adv/gateway_client.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/net/batman-adv/gateway_client.c b/net/batman-adv/gateway_client.c index 6f9b9b78f77d..47f7186dcefc 100644 --- a/net/batman-adv/gateway_client.c +++ b/net/batman-adv/gateway_client.c | |||
@@ -558,10 +558,10 @@ static bool is_type_dhcprequest(struct sk_buff *skb, int header_len) | |||
558 | p++; | 558 | p++; |
559 | 559 | ||
560 | /* ...and then we jump over the data */ | 560 | /* ...and then we jump over the data */ |
561 | if (pkt_len < *p) | 561 | if (pkt_len < 1 + (*p)) |
562 | goto out; | 562 | goto out; |
563 | pkt_len -= *p; | 563 | pkt_len -= 1 + (*p); |
564 | p += (*p); | 564 | p += 1 + (*p); |
565 | } | 565 | } |
566 | } | 566 | } |
567 | out: | 567 | out: |