From 41c068c533a0312fb435b4c2d17a8949c7d76300 Mon Sep 17 00:00:00 2001 From: Michael Smith Date: Mon, 21 Nov 2005 17:49:21 +0000 Subject: gst_object_unref, not g_object_unref Original commit message from CVS: gst_object_unref, not g_object_unref --- ChangeLog | 5 +++++ gst/auparse/gstauparse.c | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index cfcf9501..bba1eec4 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2005-11-21 Michael Smith + + * gst/auparse/gstauparse.c: (gst_auparse_dispose): + gst_object_unref, not g_object_unref + 2005-11-21 Tim-Philipp Müller * gst/wavparse/gstwavparse.c: (gst_wavparse_init), diff --git a/gst/auparse/gstauparse.c b/gst/auparse/gstauparse.c index 57d0f418..f3880341 100644 --- a/gst/auparse/gstauparse.c +++ b/gst/auparse/gstauparse.c @@ -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); -- cgit