gst_object_unref, not g_object_unref
authorMichael Smith <msmith@xiph.org>
Mon, 21 Nov 2005 17:49:21 +0000 (17:49 +0000)
committerMichael Smith <msmith@xiph.org>
Mon, 21 Nov 2005 17:49:21 +0000 (17:49 +0000)
Original commit message from CVS:
gst_object_unref, not g_object_unref

ChangeLog
gst/auparse/gstauparse.c

index cfcf950..bba1eec 100644 (file)
--- 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),
index 57d0f41..f388034 100644 (file)
@@ -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);