diff options
author | Felix Fietkau <nbd@nbd.name> | 2023-09-22 19:59:09 +0200 |
---|---|---|
committer | Felix Fietkau <nbd@nbd.name> | 2023-09-22 20:01:43 +0200 |
commit | 2f30dec3cbe56eca9f310922b6b694b3d6d57c5d (patch) | |
tree | a5053ffce1fd460c26daa4677790135c84727832 /package | |
parent | fe1028e89c7d112c97037a829d07195c4efaa5b8 (diff) | |
download | upstream-2f30dec3cbe56eca9f310922b6b694b3d6d57c5d.tar.gz upstream-2f30dec3cbe56eca9f310922b6b694b3d6d57c5d.tar.bz2 upstream-2f30dec3cbe56eca9f310922b6b694b3d6d57c5d.zip |
hostapd: fix patch rebase after a crash fix
The patch refresh accidentally moved the hostapd_ucode_free_iface call to
the wrong function
Fixes: e9722aef9e84 ("hostapd: fix a crash when disabling an interface during channel list update")
Signed-off-by: Felix Fietkau <nbd@nbd.name>
(cherry picked from commit 3a5ad6e3d74da713c0fc7d63b8026a56d16e198b)
Diffstat (limited to 'package')
-rw-r--r-- | package/network/services/hostapd/patches/601-ucode_support.patch | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/package/network/services/hostapd/patches/601-ucode_support.patch b/package/network/services/hostapd/patches/601-ucode_support.patch index 285309c0ca..de182b985d 100644 --- a/package/network/services/hostapd/patches/601-ucode_support.patch +++ b/package/network/services/hostapd/patches/601-ucode_support.patch @@ -107,14 +107,14 @@ hostapd_ubus_free_bss(hapd); accounting_deinit(hapd); hostapd_deinit_wpa(hapd); -@@ -570,6 +573,7 @@ static void sta_track_deinit(struct host - void hostapd_cleanup_iface_partial(struct hostapd_iface *iface) +@@ -600,6 +603,7 @@ void hostapd_cleanup_iface_partial(struc + static void hostapd_cleanup_iface(struct hostapd_iface *iface) { wpa_printf(MSG_DEBUG, "%s(%p)", __func__, iface); + hostapd_ucode_free_iface(iface); - eloop_cancel_timeout(channel_list_update_timeout, iface, NULL); - #ifdef NEED_AP_MLME - hostapd_stop_setup_timers(iface); + eloop_cancel_timeout(hostapd_interface_setup_failure_handler, iface, + NULL); + @@ -1189,6 +1193,7 @@ static int hostapd_start_beacon(struct h hapd->driver->set_operstate(hapd->drv_priv, 1); |