diff --git a/ChangeLog b/ChangeLog index cfcf950184..bba1eec4a4 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 57d0f41869..f3880341c9 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);