bufferlist: Initialize the GType cache for the bufferlist again

This was accidentially removed with last commit.
This commit is contained in:
Sebastian Dröge 2010-08-08 17:57:52 +02:00
parent d5c0b3311b
commit 699385f715

View file

@ -171,7 +171,10 @@ G_DEFINE_TYPE (GstBufferList, gst_buffer_list, GST_TYPE_MINI_OBJECT);
void
_gst_buffer_list_initialize (void)
{
g_type_class_ref (gst_buffer_list_get_type ());
GType type = gst_buffer_list_get_type ();
g_type_class_ref (type);
_gst_buffer_list_type = type;
}
static void