summaryrefslogtreecommitdiff
path: root/src/devices/nm-device.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/nm-device.c')
-rw-r--r--src/devices/nm-device.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/devices/nm-device.c b/src/devices/nm-device.c
index 3bb65c487b..9df3712ed4 100644
--- a/src/devices/nm-device.c
+++ b/src/devices/nm-device.c
@@ -8323,7 +8323,7 @@ dispose (GObject *object)
_cleanup_generic_post (self, FALSE);
- g_clear_pointer (&priv->ip6_saved_properties, g_hash_table_unref);
+ g_hash_table_remove_all (priv->ip6_saved_properties);
if (priv->recheck_assume_id) {
g_source_remove (priv->recheck_assume_id);
@@ -8339,8 +8339,7 @@ dispose (GObject *object)
priv->con_provider = NULL;
}
- g_hash_table_unref (priv->available_connections);
- priv->available_connections = NULL;
+ g_hash_table_remove_all (priv->available_connections);
if (priv->carrier_wait_id) {
g_source_remove (priv->carrier_wait_id);
@@ -8377,6 +8376,9 @@ finalize (GObject *object)
g_free (priv->type_desc);
g_free (priv->dhcp_anycast_address);
+ g_hash_table_unref (priv->ip6_saved_properties);
+ g_hash_table_unref (priv->available_connections);
+
G_OBJECT_CLASS (nm_device_parent_class)->finalize (object);
}