From: Tim-Philipp Müller Date: Tue, 1 Sep 2009 14:06:51 +0000 (+0100) Subject: subparse: GstAdapter is not a GstObject and should be freed with g_object_unref X-Git-Tag: 1.19.3~511^2~9279 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=889c318798d618b252c7b34079ec65b2bf0d1969;p=platform%2Fupstream%2Fgstreamer.git subparse: GstAdapter is not a GstObject and should be freed with g_object_unref --- diff --git a/gst/subparse/gstsubparse.c b/gst/subparse/gstsubparse.c index 4312c50..34cacfa 100644 --- a/gst/subparse/gstsubparse.c +++ b/gst/subparse/gstsubparse.c @@ -150,7 +150,7 @@ gst_sub_parse_dispose (GObject * object) } if (subparse->adapter) { - gst_object_unref (subparse->adapter); + g_object_unref (subparse->adapter); subparse->adapter = NULL; }