mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-06-07 07:58:51 +00:00
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:
parent
041a4a0d89
commit
00b3a309e2
2 changed files with 6 additions and 1 deletions
|
@ -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>
|
2005-12-28 Jan Schmidt <thaytan@mad.scientist.com>
|
||||||
|
|
||||||
* gst/id3demux/id3tags.c: (id3demux_read_id3v2_tag):
|
* gst/id3demux/id3tags.c: (id3demux_read_id3v2_tag):
|
||||||
|
|
|
@ -137,7 +137,7 @@ gst_au_parse_dispose (GObject * object)
|
||||||
GstAuParse *au = GST_AU_PARSE (object);
|
GstAuParse *au = GST_AU_PARSE (object);
|
||||||
|
|
||||||
if (au->adapter != NULL) {
|
if (au->adapter != NULL) {
|
||||||
gst_object_unref (au->adapter);
|
g_object_unref (au->adapter);
|
||||||
au->adapter = NULL;
|
au->adapter = NULL;
|
||||||
}
|
}
|
||||||
G_OBJECT_CLASS (parent_class)->dispose (object);
|
G_OBJECT_CLASS (parent_class)->dispose (object);
|
||||||
|
|
Loading…
Reference in a new issue