aboutsummaryrefslogtreecommitdiffstats
path: root/package/broadcom-wl
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2011-05-19 10:07:57 +0000
committerFelix Fietkau <nbd@openwrt.org>2011-05-19 10:07:57 +0000
commit7c8564d7c508fce04e37daba65faee5420bb0d9d (patch)
tree015edff840ab03bd9480886990ef44abeee4193f /package/broadcom-wl
parent512be5ce46713b45ae316a4429abbd4e1adce15f (diff)
downloadupstream-7c8564d7c508fce04e37daba65faee5420bb0d9d.tar.gz
upstream-7c8564d7c508fce04e37daba65faee5420bb0d9d.tar.bz2
upstream-7c8564d7c508fce04e37daba65faee5420bb0d9d.zip
broadcom-wl: fix uninitialized variable
It was causing an occasional kernel oops. Signed-off-by: Nathan Hintz <nlhintz@hotmail.com> SVN-Revision: 26948
Diffstat (limited to 'package/broadcom-wl')
-rw-r--r--package/broadcom-wl/patches/003-compat-2.6.35.patch3
1 files changed, 2 insertions, 1 deletions
diff --git a/package/broadcom-wl/patches/003-compat-2.6.35.patch b/package/broadcom-wl/patches/003-compat-2.6.35.patch
index a51cfcdf60..89b665371d 100644
--- a/package/broadcom-wl/patches/003-compat-2.6.35.patch
+++ b/package/broadcom-wl/patches/003-compat-2.6.35.patch
@@ -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) {