|
@@ -256,6 +256,16 @@ static int hostapd_broadcast_wep_set(struct hostapd_data *hapd)
|
|
|
|
|
|
static void hostapd_free_hapd_data(struct hostapd_data *hapd)
|
|
|
{
|
|
|
+ os_free(hapd->probereq_cb);
|
|
|
+ hapd->probereq_cb = NULL;
|
|
|
+
|
|
|
+#ifdef CONFIG_P2P
|
|
|
+ wpabuf_free(hapd->p2p_beacon_ie);
|
|
|
+ hapd->p2p_beacon_ie = NULL;
|
|
|
+ wpabuf_free(hapd->p2p_probe_resp_ie);
|
|
|
+ hapd->p2p_probe_resp_ie = NULL;
|
|
|
+#endif /* CONFIG_P2P */
|
|
|
+
|
|
|
if (!hapd->started) {
|
|
|
wpa_printf(MSG_ERROR, "%s: Interface %s wasn't started",
|
|
|
__func__, hapd->conf->iface);
|
|
@@ -298,16 +308,6 @@ static void hostapd_free_hapd_data(struct hostapd_data *hapd)
|
|
|
}
|
|
|
}
|
|
|
|
|
|
- os_free(hapd->probereq_cb);
|
|
|
- hapd->probereq_cb = NULL;
|
|
|
-
|
|
|
-#ifdef CONFIG_P2P
|
|
|
- wpabuf_free(hapd->p2p_beacon_ie);
|
|
|
- hapd->p2p_beacon_ie = NULL;
|
|
|
- wpabuf_free(hapd->p2p_probe_resp_ie);
|
|
|
- hapd->p2p_probe_resp_ie = NULL;
|
|
|
-#endif /* CONFIG_P2P */
|
|
|
-
|
|
|
wpabuf_free(hapd->time_adv);
|
|
|
|
|
|
#ifdef CONFIG_INTERWORKING
|