summaryrefslogtreecommitdiff
path: root/ext/dtls
diff options
context:
space:
mode:
authorJose Antonio Santos Cadenas <santoscadenas@gmail.com>2015-05-13 16:06:52 +0200
committerSebastian Dröge <sebastian@centricular.com>2015-05-13 19:12:32 +0300
commit2173f9f15dfbae3f7cd3425f6428c4a5418e3094 (patch)
tree31f49cc909a1069f16eddebbace35e9b38c6f8e0 /ext/dtls
parentc44acd8bde9c256f2fa0312485605374cdb1b8af (diff)
downloadgstreamer-plugins-bad-2173f9f15dfbae3f7cd3425f6428c4a5418e3094.tar.gz
dtlsdec: Fix memory leak on dispose
Parent dispose function was not called https://bugzilla.gnome.org/show_bug.cgi?id=749322
Diffstat (limited to 'ext/dtls')
-rw-r--r--ext/dtls/gstdtlsdec.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/ext/dtls/gstdtlsdec.c b/ext/dtls/gstdtlsdec.c
index 0881a8f85..9e7d84798 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