diff --git a/src/nm-active-connection.c b/src/nm-active-connection.c index 285acba03..c9b299a7d 100644 --- a/src/nm-active-connection.c +++ b/src/nm-active-connection.c @@ -734,8 +734,12 @@ nm_active_connection_init (NMActiveConnection *self) static void constructed (GObject *object) { + NMActiveConnection *self = (NMActiveConnection *) object; + G_OBJECT_CLASS (nm_active_connection_parent_class)->constructed (object); g_assert (NM_ACTIVE_CONNECTION_GET_PRIVATE (object)->subject); + + _LOGD ("constructed (%s)", G_OBJECT_TYPE_NAME (self)); } static void @@ -887,6 +891,8 @@ dispose (GObject *object) NMActiveConnection *self = NM_ACTIVE_CONNECTION (object); NMActiveConnectionPrivate *priv = NM_ACTIVE_CONNECTION_GET_PRIVATE (self); + _LOGD ("disposing"); + if (priv->chain) { nm_auth_chain_unref (priv->chain); priv->chain = NULL;