mesh: Fix mesh_oom test

Only change freq params, if ifmsh->freq is set initially, which only
happens if hostapd_get_hw_features in setup_interface2 succeeds.

Signed-off-by: Markus Theil <markus.theil@tu-ilmenau.de>
master
Markus Theil 4 years ago committed by Jouni Malinen
parent 12ae3e3dba
commit 06161d4f10

@ -212,7 +212,7 @@ static int wpas_mesh_complete(struct wpa_supplicant *wpa_s)
* Update channel configuration if the channel has changed since the
* initial setting, i.e., due to DFS radar detection during CAC.
*/
if (ifmsh->freq != params->freq.freq) {
if (ifmsh->freq > 0 && ifmsh->freq != params->freq.freq) {
struct he_capabilities *he_capab = NULL;
wpa_s->assoc_freq = ifmsh->freq;

Loading…
Cancel
Save