miniobjects: Don't chain up to empty finalize method.

If ever we do anything in mini_object_finalize, we should make sure the 4
core miniobject finalize methods chain back up again.
This commit is contained in:
Edward Hervey 2009-06-24 10:45:52 +02:00
parent 5d819beffb
commit 43dba6cefc
5 changed files with 13 additions and 5 deletions

View file

@ -165,8 +165,8 @@ gst_buffer_finalize (GstBuffer * buffer)
gst_caps_replace (&GST_BUFFER_CAPS (buffer), NULL);
((GstMiniObjectClass *)
gst_buffer_parent_class)->finalize (GST_MINI_OBJECT_CAST (buffer));
/* ((GstMiniObjectClass *) */
/* gst_buffer_parent_class)->finalize (GST_MINI_OBJECT_CAST (buffer)); */
}
/**

View file

@ -231,7 +231,7 @@ gst_event_finalize (GstEvent * event)
gst_structure_free (event->structure);
}
GST_MINI_OBJECT_CLASS (parent_class)->finalize (GST_MINI_OBJECT (event));
/* GST_MINI_OBJECT_CLASS (parent_class)->finalize (GST_MINI_OBJECT (event)); */
}
static GstEvent *

View file

@ -207,7 +207,7 @@ gst_message_finalize (GstMessage * message)
gst_structure_free (message->structure);
}
GST_MINI_OBJECT_CLASS (parent_class)->finalize (GST_MINI_OBJECT (message));
/* GST_MINI_OBJECT_CLASS (parent_class)->finalize (GST_MINI_OBJECT (message)); */
}
static GstMessage *

View file

@ -159,6 +159,14 @@ static void
gst_mini_object_finalize (GstMiniObject * obj)
{
/* do nothing */
/* WARNING: if anything is ever put in this method, make sure that the
* following sub-classes' finalize method chains up to this one:
* gstbuffer
* gstevent
* gstmessage
* gstquery
*/
}
/**

View file

@ -191,7 +191,7 @@ gst_query_finalize (GstQuery * query)
gst_structure_free (query->structure);
}
GST_MINI_OBJECT_CLASS (parent_class)->finalize (GST_MINI_OBJECT (query));
/* GST_MINI_OBJECT_CLASS (parent_class)->finalize (GST_MINI_OBJECT (query)); */
}
static GstQuery *