mirror of
https://github.com/opnsense/src.git
synced 2026-04-10 11:58:54 -04:00
urtwn: fix off-by-one error.
Reported by: adrian
This commit is contained in:
parent
6ab6058ec4
commit
64febdf2e2
1 changed files with 1 additions and 1 deletions
|
|
@ -170,7 +170,7 @@ struct urtwn_softc {
|
|||
int, uint8_t, uint32_t);
|
||||
int (*sc_power_on)(struct urtwn_softc *);
|
||||
|
||||
struct ieee80211_node *node_list[R88E_MACID_MAX];
|
||||
struct ieee80211_node *node_list[R88E_MACID_MAX + 1];
|
||||
struct mtx nt_mtx;
|
||||
|
||||
uint8_t board_type;
|
||||
|
|
|
|||
Loading…
Reference in a new issue