summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--gst/auparse/gstauparse.c2
2 files changed, 6 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 6cef9400..f1d47919 100644
--- 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):
diff --git a/gst/auparse/gstauparse.c b/gst/auparse/gstauparse.c
index 3cae686b..e1e83d3b 100644
--- a/gst/auparse/gstauparse.c
+++ b/gst/auparse/gstauparse.c
@@ -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);