From 55542ffb3eb1bfbbfeb5c49001e2b99d863fb772 Mon Sep 17 00:00:00 2001 From: Dan Williams Date: Fri, 24 Aug 2012 11:23:18 -0500 Subject: [PATCH] vlan: fix missing chain up to parent dispose Otherwise the parent classes (like NMDevice) don't clean up correctly. --- src/nm-device-vlan.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/nm-device-vlan.c b/src/nm-device-vlan.c index 59d955545b..fe3548d7f7 100644 --- a/src/nm-device-vlan.c +++ b/src/nm-device-vlan.c @@ -741,6 +741,8 @@ dispose (GObject *object) g_signal_handler_disconnect (priv->parent, priv->parent_state_id); g_object_unref (priv->parent); + + G_OBJECT_CLASS (nm_device_vlan_parent_class)->dispose (object); } static void