summaryrefslogtreecommitdiffstats
path: root/gst/auparse
diff options
context:
space:
mode:
authorTim-Philipp Müller <tim@centricular.net>2005-12-29 11:26:12 +0000
committerTim-Philipp Müller <tim@centricular.net>2005-12-29 11:26:12 +0000
commit00b3a309e20928063ab6c34e4f528a21de1b6254 (patch)
treea48a3f494c497b8a87f0d2abeaf454126ea2f215 /gst/auparse
parent041a4a0d89ceac910acf0de86d4e68fa2762e3b2 (diff)
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).
Diffstat (limited to 'gst/auparse')
-rw-r--r--gst/auparse/gstauparse.c2
1 files changed, 1 insertions, 1 deletions
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);