diff options
author | Felix Fietkau <nbd@openwrt.org> | 2011-05-19 10:07:57 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2011-05-19 10:07:57 +0000 |
commit | 0283d014e63836303f5cc336cbbd75aa72c60597 (patch) | |
tree | bd9ac63d6d83b986a36462d25e0dd7dc8e633ead /package/broadcom-wl | |
parent | 4a225d4a2fac8a91ac1c4cac163e14cc4b1d92b6 (diff) | |
download | master-187ad058-0283d014e63836303f5cc336cbbd75aa72c60597.tar.gz master-187ad058-0283d014e63836303f5cc336cbbd75aa72c60597.tar.bz2 master-187ad058-0283d014e63836303f5cc336cbbd75aa72c60597.zip |
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
Diffstat (limited to 'package/broadcom-wl')
-rw-r--r-- | package/broadcom-wl/patches/003-compat-2.6.35.patch | 3 |
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) { |