Messages in this thread Patch in this message |  | | Date | Tue, 09 Jan 2001 16:55:01 +0100 | From | Stefan Jonsson <> | Subject | [PATCH] 2.4.0 and 2.2.18 : Small bugfix for IP_ADD_MEMBERSHIP |
| |
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/
|  |