Skip to content

Commit

Permalink
hostapd: fix patch rebase after a crash fix
Browse files Browse the repository at this point in the history
The patch refresh accidentally moved the hostapd_ucode_free_iface call to
the wrong function

Fixes: e9722ae ("hostapd: fix a crash when disabling an interface during channel list update")
Signed-off-by: Felix Fietkau <[email protected]>
(cherry picked from commit 3a5ad6e)
  • Loading branch information
nbd168 committed Sep 22, 2023
1 parent fe1028e commit 2f30dec
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions package/network/services/hostapd/patches/601-ucode_support.patch
Original file line number Diff line number Diff line change
Expand Up @@ -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);

Expand Down

0 comments on commit 2f30dec

Please sign in to comment.