mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-25 01:30:38 +00:00
oggmux: fix leaks in skeleton writing
https://bugzilla.gnome.org/show_bug.cgi?id=563251
This commit is contained in:
parent
29038283bc
commit
fd218c4ec2
1 changed files with 2 additions and 1 deletions
|
@ -1232,9 +1232,10 @@ gst_ogg_mux_add_fisbone_message_header_from_tags (GstOggMux * mux,
|
|||
g_string_append (s, ", ");
|
||||
gst_tag_list_get_string_index (tags, tag, n, &tmp);
|
||||
g_string_append (s, tmp);
|
||||
g_free (tmp);
|
||||
}
|
||||
gst_ogg_mux_add_fisbone_message_header (mux, bw, header, s->str);
|
||||
g_string_free (s, FALSE);
|
||||
g_string_free (s, TRUE);
|
||||
}
|
||||
|
||||
/* This is a basic placeholder to generate roles for the tracks.
|
||||
|
|
Loading…
Reference in a new issue