mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-19 14:56:36 +00:00
gst_object_unref, not g_object_unref
Original commit message from CVS: gst_object_unref, not g_object_unref
This commit is contained in:
parent
b99bef3e58
commit
41c068c533
2 changed files with 6 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
|||
2005-11-21 Michael Smith <msmith@fluendo.com>
|
||||
|
||||
* gst/auparse/gstauparse.c: (gst_auparse_dispose):
|
||||
gst_object_unref, not g_object_unref
|
||||
|
||||
2005-11-21 Tim-Philipp Müller <tim at centricular dot net>
|
||||
|
||||
* gst/wavparse/gstwavparse.c: (gst_wavparse_init),
|
||||
|
|
|
@ -171,7 +171,7 @@ gst_auparse_dispose (GObject * object)
|
|||
GstAuParse *au = GST_AUPARSE (object);
|
||||
|
||||
if (au->adapter != NULL) {
|
||||
g_object_unref (au->adapter);
|
||||
gst_object_unref (au->adapter);
|
||||
au->adapter = NULL;
|
||||
}
|
||||
G_OBJECT_CLASS (parent_class)->dispose (object);
|
||||
|
|
Loading…
Reference in a new issue