From 3da9f1b49c9d3956b925546ff7e929fcb38731f4 Mon Sep 17 00:00:00 2001 From: Christophe Fergeau Date: Mon, 8 Jul 2013 18:14:12 +0200 Subject: gst: Chain up dispose impl to parent class --- gtk/spice-gstaudio.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/gtk/spice-gstaudio.c b/gtk/spice-gstaudio.c index 6dd250e..4a80889 100644 --- a/gtk/spice-gstaudio.c +++ b/gtk/spice-gstaudio.c @@ -101,6 +101,9 @@ static void spice_gstaudio_dispose(GObject *obj) g_object_unref(p->rchannel); p->rchannel = NULL; } + + if (G_OBJECT_CLASS(spice_gstaudio_parent_class)->dispose) + G_OBJECT_CLASS(spice_gstaudio_parent_class)->dispose(obj); } static void spice_gstaudio_init(SpiceGstaudio *pulse) -- cgit v1.2.3