mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-22 23:28:16 +00:00
flacparse: do not leak uid after parsing TOC event
https://bugzilla.gnome.org/show_bug.cgi?id=736739
This commit is contained in:
parent
4bc10e755a
commit
7cd335e9b9
1 changed files with 1 additions and 1 deletions
|
@ -1796,10 +1796,10 @@ gst_flac_parse_src_event (GstBaseParse * parse, GstEvent * event)
|
||||||
GST_BASE_PARSE_CLASS (parent_class)->src_event (parse,
|
GST_BASE_PARSE_CLASS (parent_class)->src_event (parse,
|
||||||
seek_event);
|
seek_event);
|
||||||
|
|
||||||
g_free (uid);
|
|
||||||
} else {
|
} else {
|
||||||
GST_WARNING_OBJECT (parse, "no TOC entry with given UID: %s", uid);
|
GST_WARNING_OBJECT (parse, "no TOC entry with given UID: %s", uid);
|
||||||
}
|
}
|
||||||
|
g_free (uid);
|
||||||
}
|
}
|
||||||
gst_toc_unref (toc);
|
gst_toc_unref (toc);
|
||||||
} else {
|
} else {
|
||||||
|
|
Loading…
Reference in a new issue