diff options
| author | Solomon Peachy | 2013-07-20 05:31:27 +0200 |
|---|---|---|
| committer | John W. Linville | 2013-07-22 22:04:08 +0200 |
| commit | 16ec75b5de6479637993ad0f7c11a49aae069f68 (patch) | |
| tree | 7d31d5f55fd34ddd66c63565257b648b7065e38c /drivers/net | |
| parent | ath9k_htc: reboot firmware if it was loaded (diff) | |
| download | kernel-qcow2-linux-16ec75b5de6479637993ad0f7c11a49aae069f68.tar.gz kernel-qcow2-linux-16ec75b5de6479637993ad0f7c11a49aae069f68.tar.xz kernel-qcow2-linux-16ec75b5de6479637993ad0f7c11a49aae069f68.zip | |
cw1200: Fix OOPS in monitor mode
In monitor mode, priv->vif is NULL, but at one point in the receive path we
blindly attempt to dereference it. Add a test to prevent this.
Signed-off-by: Solomon Peachy <pizza@shaftnet.org>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net')
| -rw-r--r-- | drivers/net/wireless/cw1200/txrx.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/wireless/cw1200/txrx.c b/drivers/net/wireless/cw1200/txrx.c index 5862c373d714..e824d4d4a18d 100644 --- a/drivers/net/wireless/cw1200/txrx.c +++ b/drivers/net/wireless/cw1200/txrx.c @@ -1165,7 +1165,7 @@ void cw1200_rx_cb(struct cw1200_common *priv, if (cw1200_handle_action_rx(priv, skb)) return; } else if (ieee80211_is_beacon(frame->frame_control) && - !arg->status && + !arg->status && priv->vif && !memcmp(ieee80211_get_SA(frame), priv->vif->bss_conf.bssid, ETH_ALEN)) { const u8 *tim_ie; |
