gst_object_unref, not g_object_unref

Original commit message from CVS:
gst_object_unref, not g_object_unref
This commit is contained in:
Michael Smith 2005-11-21 17:49:21 +00:00
parent b99bef3e58
commit 41c068c533
2 changed files with 6 additions and 1 deletions

View file

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

View file

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