summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--gst/auparse/gstauparse.c2
2 files changed, 6 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index cfcf9501..bba1eec4 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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),
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);