if we log our init, should also log finalize

Original commit message from CVS:
if we log our init, should also log finalize
This commit is contained in:
Thomas Vander Stichele 2005-10-11 09:14:59 +00:00
parent 7eeb3ca879
commit c43e9db780
2 changed files with 3 additions and 1 deletions

2
common

@ -1 +1 @@
Subproject commit 3d0040aa51e7b10c94707b50417e99edb1f57f08
Subproject commit 221ccc0dc85b2d38bc5e2fc3f21cd80971777791

View 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);