summaryrefslogtreecommitdiff
path: root/src/network.c
diff options
context:
space:
mode:
authorMartin Xu <martin.xu@intel.com>2010-03-23 11:43:50 +0800
committerSamuel Ortiz <sameo@linux.intel.com>2010-03-23 12:05:52 +0100
commit449a6aa318165cc8e39ced502a221ee16bbb2abb (patch)
treeae943dab4ce5f4629fb3b006927321b112405e0c /src/network.c
parent678e15dba2930464631ddca47b42a9d8473b1175 (diff)
downloadconnman-449a6aa318165cc8e39ced502a221ee16bbb2abb.tar.gz
connman-449a6aa318165cc8e39ced502a221ee16bbb2abb.tar.bz2
connman-449a6aa318165cc8e39ced502a221ee16bbb2abb.zip
Set network->device as NULL when the device is removed
oFono plugin can use network->device to decide whether the modem is removed during active PrimaryContext. That fixes a segmentation fault when removing a 3G modem before getting the set_network_active() D-Bus reply.
Diffstat (limited to 'src/network.c')
-rw-r--r--src/network.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/network.c b/src/network.c
index 3fca7bb9..8fb0ea02 100644
--- a/src/network.c
+++ b/src/network.c
@@ -237,7 +237,8 @@ static void unregister_interface(struct connman_element *element)
network->registered = FALSE;
- emit_networks_signal(network->device);
+ if (network->device != NULL)
+ emit_networks_signal(network->device);
g_dbus_unregister_interface(connection, element->path,
CONNMAN_NETWORK_INTERFACE);