mirror of
https://github.com/vanhoefm/fragattacks.git
synced 2025-02-26 13:49:35 -05:00
Return error from wpa_drv_get_pref_freq_list() if no driver support
Commit 983422088f0066068fd364013623d1e475031e6b ('nl80211: Add means to query preferred channels') return success if no driver wrapper callback was provided for fetching the preferred channel list. That is problematic since the *num argument is not updated and uninitialized freq_list could end up getting used with arbitrary frequency values. Fix this by returning error in case the values were not available due to driver wrapper not implementing the function. This matches the style used in the driver_nl80211.c implementation for the case where the driver does not support such fetch operation. Signed-off-by: Jouni Malinen <jouni@qca.qualcomm.com>
This commit is contained in:
parent
983422088f
commit
34c5267bbc
@ -899,7 +899,7 @@ static inline int wpa_drv_get_pref_freq_list(struct wpa_supplicant *wpa_s,
|
||||
unsigned int *freq_list)
|
||||
{
|
||||
if (!wpa_s->driver->get_pref_freq_list)
|
||||
return 0;
|
||||
return -1;
|
||||
return wpa_s->driver->get_pref_freq_list(wpa_s->drv_priv, if_type,
|
||||
num, freq_list);
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user