mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-27 09:12:39 +00:00
25 lines
907 B
Diff
25 lines
907 B
Diff
|
From 928da9a270deaf4409aee4d87a33a6f61b56c136 Mon Sep 17 00:00:00 2001
|
||
|
From: Markus Theil <markus.theil@tu-ilmenau.de>
|
||
|
Date: Tue, 30 Jun 2020 14:19:05 +0200
|
||
|
Subject: [PATCH 17/19] 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>
|
||
|
---
|
||
|
wpa_supplicant/mesh.c | 2 +-
|
||
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
||
|
|
||
|
--- a/wpa_supplicant/mesh.c
|
||
|
+++ b/wpa_supplicant/mesh.c
|
||
|
@@ -218,7 +218,7 @@ static int wpas_mesh_complete(struct wpa
|
||
|
* inspect if channel's been changed since initialized.
|
||
|
* i.e. DFS radar detection
|
||
|
*/
|
||
|
- if (ifmsh->freq != params->freq.freq) {
|
||
|
+ if (ifmsh->freq > 0 && ifmsh->freq != params->freq.freq) {
|
||
|
wpa_s->assoc_freq = ifmsh->freq;
|
||
|
ssid->frequency = ifmsh->freq;
|
||
|
struct he_capabilities *he_capab = NULL;
|