From 2173f9f15dfbae3f7cd3425f6428c4a5418e3094 Mon Sep 17 00:00:00 2001 From: Jose Antonio Santos Cadenas Date: Wed, 13 May 2015 16:06:52 +0200 Subject: [PATCH] dtlsdec: Fix memory leak on dispose Parent dispose function was not called https://bugzilla.gnome.org/show_bug.cgi?id=749322 --- ext/dtls/gstdtlsdec.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ext/dtls/gstdtlsdec.c b/ext/dtls/gstdtlsdec.c index 0881a8f85f..9e7d847980 100644 --- a/ext/dtls/gstdtlsdec.c +++ b/ext/dtls/gstdtlsdec.c @@ -246,6 +246,8 @@ gst_dtls_dec_dispose (GObject * object) g_object_unref (self->connection); self->connection = NULL; } + + G_OBJECT_CLASS (parent_class)->dispose (object); } static void