From 7d6e1650070decec4088a9ec4aa3f76e643d6232 Mon Sep 17 00:00:00 2001 From: Stefan Sauer Date: Fri, 30 Dec 2011 17:57:41 +0100 Subject: [PATCH] gst: unref the two cotnroller types in _deinit() --- gst/gst.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/gst/gst.c b/gst/gst.c index 9d8d1eb20e..4efb9768d3 100644 --- a/gst/gst.c +++ b/gst/gst.c @@ -1149,6 +1149,9 @@ gst_deinit (void) g_type_class_unref (g_type_class_peek (gst_segment_flags_get_type ())); g_type_class_unref (g_type_class_peek (gst_scheduling_flags_get_type ())); + g_type_class_unref (g_type_class_peek (gst_control_binding_get_type ())); + g_type_class_unref (g_type_class_peek (gst_control_source_get_type ())); + gst_deinitialized = TRUE; GST_INFO ("deinitialized GStreamer"); }