if we log our init, should also log finalize
authorThomas Vander Stichele <thomas@apestaart.org>
Tue, 11 Oct 2005 09:14:59 +0000 (09:14 +0000)
committerThomas Vander Stichele <thomas@apestaart.org>
Tue, 11 Oct 2005 09:14:59 +0000 (09:14 +0000)
Original commit message from CVS:
if we log our init, should also log finalize

common
gst/gstbuffer.c

diff --git a/common b/common
index 3d0040a..221ccc0 160000 (submodule)
--- a/common
+++ b/common
@@ -1 +1 @@
-Subproject commit 3d0040aa51e7b10c94707b50417e99edb1f57f08
+Subproject commit 221ccc0dc85b2d38bc5e2fc3f21cd80971777791
index c5c3d1d..8fe3e04 100644 (file)
@@ -160,6 +160,8 @@ gst_buffer_finalize (GstBuffer * buffer)
 {
   g_return_if_fail (buffer != NULL);
 
+  GST_CAT_LOG (GST_CAT_BUFFER, "finalize %p", buffer);
+
   /* free our data */
   if (buffer->malloc_data) {
     g_free (buffer->malloc_data);