From 83878ec6ef644c6c50e4389701594fa2449d0d6b Mon Sep 17 00:00:00 2001 From: Vincent Penquerc'h Date: Mon, 16 Jan 2012 16:59:57 +0000 Subject: [PATCH] spc: fix missing dispose chaining to parent class Not even compiled, I do not have the dependencies needed. --- ext/spc/gstspc.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ext/spc/gstspc.c b/ext/spc/gstspc.c index 70d2340..fb85ca3 100644 --- a/ext/spc/gstspc.c +++ b/ext/spc/gstspc.c @@ -167,6 +167,8 @@ gst_spc_dec_dispose (GObject * object) } spc_tag_free (&spc->tag_info); + + GST_CALL_PARENT (G_OBJECT_CLASS, dispose, (object)); } static GstFlowReturn -- 2.7.4