[PATCH] 2.4.0 and 2.2.18 : Small bugfix for IP_ADD_MEMBERSHIP

From: Stefan Jonsson (stefan.jonsson@nokia.com)
Date: Tue Jan 09 2001 - 10:55:01 EST


This small patch fixes a small bug in IP_ADD_MEMBERSHIP where im->loaded
is used but not initialized when compiled without CONFIG_IP_MULTICAST.

--- net/ipv4/igmp.c.orig Tue Jan 9 13:40:48 2001
+++ net/ipv4/igmp.c Tue Jan 9 13:37:26 2001
@@ -442,8 +442,8 @@
         im->timer.function=&igmp_timer_expire;
         im->unsolicit_count = IGMP_Unsolicited_Report_Count;
         im->reporter = 0;
- im->loaded = 0;
 #endif
+ im->loaded = 0;
         im->next=in_dev->mc_list;
         in_dev->mc_list=im;
         igmp_group_added(im);
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
Please read the FAQ at http://www.tux.org/lkml/



This archive was generated by hypermail 2b29 : Mon Jan 15 2001 - 21:00:21 EST