diff options
-rw-r--r-- | net/ipv4/igmp.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/net/ipv4/igmp.c b/net/ipv4/igmp.c index fa057d105bef..5104bc0bbdbe 100644 --- a/net/ipv4/igmp.c +++ b/net/ipv4/igmp.c | |||
@@ -880,6 +880,8 @@ static void igmp_heard_query(struct in_device *in_dev, struct sk_buff *skb, | |||
880 | * to be intended in a v3 query. | 880 | * to be intended in a v3 query. |
881 | */ | 881 | */ |
882 | max_delay = IGMPV3_MRC(ih3->code)*(HZ/IGMP_TIMER_SCALE); | 882 | max_delay = IGMPV3_MRC(ih3->code)*(HZ/IGMP_TIMER_SCALE); |
883 | if (!max_delay) | ||
884 | max_delay = 1; /* can't mod w/ 0 */ | ||
883 | } else { /* v3 */ | 885 | } else { /* v3 */ |
884 | if (!pskb_may_pull(skb, sizeof(struct igmpv3_query))) | 886 | if (!pskb_may_pull(skb, sizeof(struct igmpv3_query))) |
885 | return; | 887 | return; |