1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-11-18 01:12:52 +02:00

broadcom-wl: fix uninitialized variable

It was causing an occasional kernel oops.

Signed-off-by: Nathan Hintz <nlhintz@hotmail.com>

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@26948 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
nbd 2011-05-19 10:07:57 +00:00
parent 2bc10e6382
commit f359241ffe

View File

@ -12,7 +12,7 @@
int i; int i;
if (!dev) if (!dev)
@@ -2098,14 +2102,23 @@ _wl_set_multicast_list(struct net_device @@ -2098,14 +2102,24 @@ _wl_set_multicast_list(struct net_device
wl->pub->allmulti = (dev->flags & IFF_ALLMULTI)? TRUE: FALSE; wl->pub->allmulti = (dev->flags & IFF_ALLMULTI)? TRUE: FALSE;
/* copy the list of multicasts into our private table */ /* copy the list of multicasts into our private table */
@ -20,6 +20,7 @@
for (i = 0, mclist = dev->mc_list; mclist && (i < dev->mc_count); for (i = 0, mclist = dev->mc_list; mclist && (i < dev->mc_count);
i++, mclist = mclist->next) { i++, mclist = mclist->next) {
+#else +#else
+ i = 0;
+ netdev_for_each_mc_addr(ha, dev) { + netdev_for_each_mc_addr(ha, dev) {
+#endif +#endif
if (i >= MAXMULTILIST) { if (i >= MAXMULTILIST) {