gst/auparse/gstauparse.c: Can't use gst_object_unref() on a GstAdapter (#325191).
authorTim-Philipp Müller <tim@centricular.net>
Thu, 29 Dec 2005 11:26:12 +0000 (11:26 +0000)
committerTim-Philipp Müller <tim@centricular.net>
Thu, 29 Dec 2005 11:26:12 +0000 (11:26 +0000)
Original commit message from CVS:
* gst/auparse/gstauparse.c: (gst_au_parse_dispose):
Can't use gst_object_unref() on a GstAdapter (#325191).

ChangeLog
gst/auparse/gstauparse.c

index 6cef940..f1d4791 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2005-12-29  Tim-Philipp Müller  <tim at centricular dot net>
+
+       * gst/auparse/gstauparse.c: (gst_au_parse_dispose):
+         Can't use gst_object_unref() on a GstAdapter (#325191).
+
 2005-12-28  Jan Schmidt  <thaytan@mad.scientist.com>
 
        * gst/id3demux/id3tags.c: (id3demux_read_id3v2_tag):
index 3cae686..e1e83d3 100644 (file)
@@ -137,7 +137,7 @@ gst_au_parse_dispose (GObject * object)
   GstAuParse *au = GST_AU_PARSE (object);
 
   if (au->adapter != NULL) {
-    gst_object_unref (au->adapter);
+    g_object_unref (au->adapter);
     au->adapter = NULL;
   }
   G_OBJECT_CLASS (parent_class)->dispose (object);