diff --git a/tools/ges-launcher.c b/tools/ges-launcher.c index 3dfa3ff2c6..d52f528d95 100644 --- a/tools/ges-launcher.c +++ b/tools/ges-launcher.c @@ -793,6 +793,7 @@ _shutdown (GApplication * application) { gint validate_res = 0; GESLauncher *self = GES_LAUNCHER (application); + ParsedOptions *opts = &self->priv->parsed_options; _save_timeline (self); @@ -808,6 +809,8 @@ _shutdown (GApplication * application) g_source_remove (self->priv->signal_watch_id); #endif + g_free (opts->sanitized_timeline); + G_APPLICATION_CLASS (ges_launcher_parent_class)->shutdown (application); }