From: Felix Fietkau Date: Mon, 23 Jul 2007 00:37:35 +0000 (+0000) Subject: another attempt at fixing the madwifi memleak for good. i'm 95% sure this is the... X-Git-Url: http://git.openwrt.org/?p=openwrt%2Fsvn-archive%2Farchive.git;a=commitdiff_plain;h=edb6df9e220511957744d74549424ef8cd5cf482;hp=26c6a370d945971b35de39e4c04c13ffff8dcc77 another attempt at fixing the madwifi memleak for good. i'm 95% sure this is the right fix, but it needs to be tested in a real ad-hoc environment... (#2121) SVN-Revision: 8111 --- diff --git a/package/madwifi/patches/128-adhoc_memleak.patch b/package/madwifi/patches/128-adhoc_memleak.patch new file mode 100644 index 0000000000..75c2261429 --- /dev/null +++ b/package/madwifi/patches/128-adhoc_memleak.patch @@ -0,0 +1,13 @@ +Index: madwifi-ng-r2568-20070710/net80211/ieee80211_input.c +=================================================================== +--- madwifi-ng-r2568-20070710.orig/net80211/ieee80211_input.c 2007-07-23 01:48:42.282389707 +0200 ++++ madwifi-ng-r2568-20070710/net80211/ieee80211_input.c 2007-07-23 01:48:44.214499810 +0200 +@@ -2875,7 +2875,7 @@ + } + if ((vap->iv_opmode == IEEE80211_M_IBSS) && + (scan.capinfo & IEEE80211_CAPINFO_IBSS)) { +- if (!IEEE80211_ADDR_EQ(wh->i_addr2, ni->ni_macaddr)) { ++ if (ni == vap->iv_bss) { + /* Create a new entry in the neighbor table. */ + ni = ieee80211_add_neighbor(vap, wh, &scan); + } else {