dtlsdec: Fix memory leak on dispose

Parent dispose function was not called

https://bugzilla.gnome.org/show_bug.cgi?id=749322
This commit is contained in:
Jose Antonio Santos Cadenas 2015-05-13 16:06:52 +02:00 committed by Sebastian Dröge
parent c44acd8bde
commit 2173f9f15d

View file

@ -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