From f1f11098fea1dbbd7f80feb86d01f3af0393cf30 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tim-Philipp=20M=C3=BCller?= Date: Fri, 27 Jan 2012 17:45:39 +0000 Subject: [PATCH] gst: don't ref GType for private enum for which there's no GType any more --- gst/gst.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/gst/gst.c b/gst/gst.c index f14cfef6e6..af074b0c24 100644 --- a/gst/gst.c +++ b/gst/gst.c @@ -710,7 +710,6 @@ init_post (GOptionContext * context, GOptionGroup * group, gpointer data, g_type_class_ref (gst_tag_flag_get_type ()); g_type_class_ref (gst_task_pool_get_type ()); g_type_class_ref (gst_task_state_get_type ()); - g_type_class_ref (gst_alloc_trace_flags_get_type ()); g_type_class_ref (gst_type_find_probability_get_type ()); g_type_class_ref (gst_uri_error_get_type ()); g_type_class_ref (gst_uri_type_get_type ()); @@ -1072,7 +1071,6 @@ gst_deinit (void) g_type_class_unref (g_type_class_peek (gst_tag_merge_mode_get_type ())); g_type_class_unref (g_type_class_peek (gst_tag_flag_get_type ())); g_type_class_unref (g_type_class_peek (gst_task_state_get_type ())); - g_type_class_unref (g_type_class_peek (gst_alloc_trace_flags_get_type ())); g_type_class_unref (g_type_class_peek (gst_type_find_probability_get_type ())); g_type_class_unref (g_type_class_peek (gst_uri_type_get_type ()));