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 [EMAIL PROTECTED]
Please read the FAQ at http://www.tux.org/lkml/

Reply via email to