mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-12-25 03:13:20 +02:00
fix a horrible memleak in madwifi
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@7850 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
df40b4d7da
commit
43bab0e4ee
13
package/madwifi/patches/125-plug_memleak.patch
Normal file
13
package/madwifi/patches/125-plug_memleak.patch
Normal file
@ -0,0 +1,13 @@
|
||||
Index: madwifi-ng-r2420-20070602/net80211/ieee80211_input.c
|
||||
===================================================================
|
||||
--- madwifi-ng-r2420-20070602.orig/net80211/ieee80211_input.c 2007-07-02 12:50:31.839514500 +0200
|
||||
+++ madwifi-ng-r2420-20070602/net80211/ieee80211_input.c 2007-07-02 12:51:10.309918750 +0200
|
||||
@@ -2832,7 +2832,7 @@
|
||||
ieee80211_add_scan(vap, &scan, wh, subtype, rssi, rstamp);
|
||||
return;
|
||||
}
|
||||
- if (scan.capinfo & IEEE80211_CAPINFO_IBSS) {
|
||||
+ if ((vap->iv_opmode == IEEE80211_M_IBSS) && (scan.capinfo & IEEE80211_CAPINFO_IBSS)) {
|
||||
if (!IEEE80211_ADDR_EQ(wh->i_addr2, ni->ni_macaddr)) {
|
||||
/* Create a new entry in the neighbor table. */
|
||||
ni = ieee80211_add_neighbor(vap, wh, &scan);
|
Loading…
Reference in New Issue
Block a user