mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-25 01:30:38 +00:00
timeline-element: don't leak name string
This commit is contained in:
parent
29bac48934
commit
e1f92be62b
1 changed files with 4 additions and 0 deletions
|
@ -148,6 +148,10 @@ _set_property (GObject * object, guint property_id,
|
||||||
static void
|
static void
|
||||||
ges_timeline_element_finalize (GObject * self)
|
ges_timeline_element_finalize (GObject * self)
|
||||||
{
|
{
|
||||||
|
GESTimelineElement *tle = GES_TIMELINE_ELEMENT (self);
|
||||||
|
|
||||||
|
g_free (tle->name);
|
||||||
|
|
||||||
G_OBJECT_CLASS (ges_timeline_element_parent_class)->finalize (self);
|
G_OBJECT_CLASS (ges_timeline_element_parent_class)->finalize (self);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue