another attempt at fixing the madwifi memleak for good. i'm 95% sure this is the...
[openwrt/svn-archive/archive.git] / package / madwifi / patches / 128-adhoc_memleak.patch
1 Index: madwifi-ng-r2568-20070710/net80211/ieee80211_input.c
2 ===================================================================
3 --- madwifi-ng-r2568-20070710.orig/net80211/ieee80211_input.c 2007-07-23 01:48:42.282389707 +0200
4 +++ madwifi-ng-r2568-20070710/net80211/ieee80211_input.c 2007-07-23 01:48:44.214499810 +0200
5 @@ -2875,7 +2875,7 @@
6 }
7 if ((vap->iv_opmode == IEEE80211_M_IBSS) &&
8 (scan.capinfo & IEEE80211_CAPINFO_IBSS)) {
9 - if (!IEEE80211_ADDR_EQ(wh->i_addr2, ni->ni_macaddr)) {
10 + if (ni == vap->iv_bss) {
11 /* Create a new entry in the neighbor table. */
12 ni = ieee80211_add_neighbor(vap, wh, &scan);
13 } else {