wiphy: Move NULL check to device_disassociated

Do nothing in device_disassociated if device->connected_network
indicates we are not associated.  This may happen if the device was
connected since before iwd was started, this should possibly be fixed
separately by querying device state when device is detected.
This commit is contained in:
Andrew Zaborowski 2016-06-09 19:55:19 +02:00 committed by Denis Kenzior
parent 3fa9a21a39
commit e07b24e5d8
1 changed files with 4 additions and 2 deletions

View File

@ -218,6 +218,9 @@ static void device_disassociated(struct device *device)
struct network *network = device->connected_network;
struct l_dbus *dbus = dbus_get_bus();
if (!network)
return;
network_disconnected(network);
device->connected_bss = NULL;
@ -237,8 +240,7 @@ static void device_lost_beacon(struct device *device)
dbus_pending_reply(&device->connect_pending,
dbus_error_failed(device->connect_pending));
if (device->connected_network)
device_disassociated(device);
device_disassociated(device);
}
static void genl_connect_cb(struct l_genl_msg *msg, void *user_data)