mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-23 18:21:04 +00:00
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:
parent
c44acd8bde
commit
2173f9f15d
1 changed files with 2 additions and 0 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue