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
@ -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>
|
2005-11-21 Tim-Philipp Müller <tim at centricular dot net>
|
||||||
|
|
||||||
* gst/wavparse/gstwavparse.c: (gst_wavparse_init),
|
* gst/wavparse/gstwavparse.c: (gst_wavparse_init),
|
||||||
|
@ -171,7 +171,7 @@ gst_auparse_dispose (GObject * object)
|
|||||||
GstAuParse *au = GST_AUPARSE (object);
|
GstAuParse *au = GST_AUPARSE (object);
|
||||||
|
|
||||||
if (au->adapter != NULL) {
|
if (au->adapter != NULL) {
|
||||||
g_object_unref (au->adapter);
|
gst_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…
x
Reference in New Issue
Block a user