gst/auparse/gstauparse.c: Can't use gst_object_unref() on a GstAdapter (#325191).

Original commit message from CVS:
* gst/auparse/gstauparse.c: (gst_au_parse_dispose):
Can't use gst_object_unref() on a GstAdapter (#325191).
This commit is contained in:
Tim-Philipp Müller 2005-12-29 11:26:12 +00:00
parent 041a4a0d89
commit 00b3a309e2
2 changed files with 6 additions and 1 deletions

View file

@ -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):

View 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);