From 00b3a309e20928063ab6c34e4f528a21de1b6254 Mon Sep 17 00:00:00 2001 From: Tim-Philipp Müller Date: Thu, 29 Dec 2005 11:26:12 +0000 Subject: gst/auparse/gstauparse.c: Can't use gst_object_unref() on a GstAdapter (#325191). Original commit message from CVS: * gst/auparse/gstauparse.c: (gst_au_parse_dispose): Can't use gst_object_unref() on a GstAdapter (#325191). --- gst/auparse/gstauparse.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gst/auparse') diff --git a/gst/auparse/gstauparse.c b/gst/auparse/gstauparse.c index 3cae686b..e1e83d3b 100644 --- a/gst/auparse/gstauparse.c +++ b/gst/auparse/gstauparse.c @@ -137,7 +137,7 @@ gst_au_parse_dispose (GObject * object) GstAuParse *au = GST_AU_PARSE (object); if (au->adapter != NULL) { - gst_object_unref (au->adapter); + g_object_unref (au->adapter); au->adapter = NULL; } G_OBJECT_CLASS (parent_class)->dispose (object); -- cgit