cfg80211: fix NULL dereference in IBSS SIOCGIWAP
This patch avoids memcpy from wdev->wext.ibss.bssid if it is NULL. This could happen if we SIOCGIWAP before SIOCSIWAP. Signed-off-by: Zhu Yi <yi.zhu@intel.com> Signed-off-by: John W. Linville <linville@tuxdriver.com>
This commit is contained in:
parent
f874011bb0
commit
80e5b06a1b
1 changed files with 4 additions and 1 deletions
|
@ -487,8 +487,11 @@ int cfg80211_ibss_wext_giwap(struct net_device *dev,
|
|||
wdev_lock(wdev);
|
||||
if (wdev->current_bss)
|
||||
memcpy(ap_addr->sa_data, wdev->current_bss->pub.bssid, ETH_ALEN);
|
||||
else
|
||||
else if (wdev->wext.ibss.bssid)
|
||||
memcpy(ap_addr->sa_data, wdev->wext.ibss.bssid, ETH_ALEN);
|
||||
else
|
||||
memset(ap_addr->sa_data, 0, ETH_ALEN);
|
||||
|
||||
wdev_unlock(wdev);
|
||||
|
||||
return 0;
|
||||
|
|
Loading…
Reference in a new issue