rdisc: add missing chain up to parent finalize/dispose

This commit is contained in:
Dan Williams 2015-04-09 09:27:50 -05:00
parent 1bd99ff273
commit 5955f82f01
2 changed files with 4 additions and 0 deletions

View file

@ -724,6 +724,8 @@ dispose (GObject *object)
ndp_close (priv->ndp);
priv->ndp = NULL;
}
G_OBJECT_CLASS (nm_lndp_rdisc_parent_class)->dispose (object);
}
static void

View file

@ -169,6 +169,8 @@ nm_rdisc_finalize (GObject *object)
g_array_unref (rdisc->routes);
g_array_unref (rdisc->dns_servers);
g_array_unref (rdisc->dns_domains);
G_OBJECT_CLASS (nm_rdisc_parent_class)->finalize (object);
}
static void