mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-17 11:45:25 +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);
|
g_object_unref (self->connection);
|
||||||
self->connection = NULL;
|
self->connection = NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
G_OBJECT_CLASS (parent_class)->dispose (object);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
|
|
Loading…
Reference in a new issue