broadcom-wl: fix uninitialized variable
authornbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>
Thu, 19 May 2011 10:07:57 +0000 (10:07 +0000)
committernbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>
Thu, 19 May 2011 10:07:57 +0000 (10:07 +0000)
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

package/broadcom-wl/patches/003-compat-2.6.35.patch

index a51cfcd..89b6653 100644 (file)
@@ -12,7 +12,7 @@
        int i;
  
        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;
  
                /* 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);
                        i++, mclist = mclist->next) {
 +#else
++              i = 0;
 +              netdev_for_each_mc_addr(ha, dev) {
 +#endif
                        if (i >= MAXMULTILIST) {
This page took 0.02454 seconds and 4 git commands to generate.