summaryrefslogtreecommitdiff
path: root/gdbus
diff options
context:
space:
mode:
authorJohan Hedberg <johan.hedberg@intel.com>2012-10-08 14:36:12 +0200
committerMarcel Holtmann <marcel@holtmann.org>2012-11-26 14:44:48 +0100
commit9e82f640c3d6eafad840fdd800c302bfa3a4bc25 (patch)
treef8adba6088d1e8eb8b04fc5ddbedf151f5ff2a32 /gdbus
parent84c89a158f93c9616e75e7d20a955e64d9e154df (diff)
downloadconnman-9e82f640c3d6eafad840fdd800c302bfa3a4bc25.tar.gz
connman-9e82f640c3d6eafad840fdd800c302bfa3a4bc25.tar.bz2
connman-9e82f640c3d6eafad840fdd800c302bfa3a4bc25.zip
gdbus: Fix processing pending properties in remove_interface()
Diffstat (limited to 'gdbus')
-rw-r--r--gdbus/object.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/gdbus/object.c b/gdbus/object.c
index 66431de7..03d2252c 100644
--- a/gdbus/object.c
+++ b/gdbus/object.c
@@ -646,6 +646,8 @@ static gboolean remove_interface(struct generic_data *data, const char *name)
if (iface == NULL)
return FALSE;
+ process_properties_from_interface(data, iface);
+
data->interfaces = g_slist_remove(data->interfaces, iface);
if (iface->destroy) {