mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
when doing internal bridging free the node instead of just dropping the
reference for consistency (explicit refcounting is discouraged) Obtained from: madwifi
This commit is contained in:
parent
9089c48c13
commit
7aa402898f
1 changed files with 1 additions and 1 deletions
|
|
@ -284,7 +284,7 @@ ieee80211_input(struct ifnet *ifp, struct mbuf *m, struct ieee80211_node *ni,
|
|||
m1 = m;
|
||||
m = NULL;
|
||||
}
|
||||
ieee80211_unref_node(&ni);
|
||||
ieee80211_free_node(ic, ni);
|
||||
}
|
||||
}
|
||||
if (m1 != NULL) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue