cfg80211: fix station info handling bugs
Fix two places where the structure isn't initialized to zero, and thus can't be filled properly by the driver. Fixes:4a4b816950
("cfg80211: Accept multiple RSSI thresholds for CQM") Fixes:9930380f0b
("cfg80211: implement IWRATE") Signed-off-by: Johannes Berg <johannes.berg@intel.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:

committed by
David S. Miller

parent
cd443f1e91
commit
5762d7d3ed
@@ -9809,7 +9809,7 @@ static int cfg80211_cqm_rssi_update(struct cfg80211_registered_device *rdev,
|
||||
*/
|
||||
if (!wdev->cqm_config->last_rssi_event_value && wdev->current_bss &&
|
||||
rdev->ops->get_station) {
|
||||
struct station_info sinfo;
|
||||
struct station_info sinfo = {};
|
||||
u8 *mac_addr;
|
||||
|
||||
mac_addr = wdev->current_bss->pub.bssid;
|
||||
|
Reference in New Issue
Block a user