Skip to content
Snippets Groups Projects
Commit 817a0c0c authored by nbd's avatar nbd
Browse files

madwifi: fix a rare ad-hoc mode crash

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@15964 3c298f89-4303-0410-b956-a3cf2f4a3e73
parent 0398b9f5
No related branches found
No related tags found
No related merge requests found
--- a/net80211/ieee80211_input.c
+++ b/net80211/ieee80211_input.c
@@ -313,7 +313,7 @@ ieee80211_input(struct ieee80211vap * va
if (type == IEEE80211_FC0_TYPE_DATA && ni == vap->iv_bss &&
!IEEE80211_ADDR_EQ(vap->iv_bss->ni_macaddr, wh->i_addr2)) {
/* Try to find sender in local node table. */
- ni = ieee80211_find_node(vap->iv_bss->ni_table, wh->i_addr2);
+ ni = ieee80211_find_node(&ic->ic_sta, wh->i_addr2);
if (ni == NULL) {
/*
* Fake up a node for this newly discovered
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment