mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-26 19:51:11 +00:00
GESTrackFileSource: Don't forget to free the URI string
This commit is contained in:
parent
346d7ab0f6
commit
fd15030ff1
1 changed files with 5 additions and 0 deletions
|
@ -68,6 +68,11 @@ ges_track_filesource_set_property (GObject * object, guint property_id,
|
|||
static void
|
||||
ges_track_filesource_dispose (GObject * object)
|
||||
{
|
||||
GESTrackFileSource *tfs = GES_TRACK_FILESOURCE (object);
|
||||
|
||||
if (tfs->uri)
|
||||
g_free (tfs->uri);
|
||||
|
||||
G_OBJECT_CLASS (ges_track_filesource_parent_class)->dispose (object);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue