hostapd: Fix deinit on initialization failure
This commit is contained in:
parent
1c83b67efd
commit
9078adfc8c
1 changed files with 2 additions and 0 deletions
|
@ -279,6 +279,8 @@ static void hostapd_interface_deinit_free(struct hostapd_iface *iface)
|
||||||
{
|
{
|
||||||
const struct wpa_driver_ops *driver;
|
const struct wpa_driver_ops *driver;
|
||||||
void *drv_priv;
|
void *drv_priv;
|
||||||
|
if (iface == NULL)
|
||||||
|
return;
|
||||||
driver = iface->bss[0]->driver;
|
driver = iface->bss[0]->driver;
|
||||||
drv_priv = iface->bss[0]->drv_priv;
|
drv_priv = iface->bss[0]->drv_priv;
|
||||||
hostapd_interface_deinit(iface);
|
hostapd_interface_deinit(iface);
|
||||||
|
|
Loading…
Reference in a new issue