Skip to content
Snippets Groups Projects
Commit cf492d38 authored by Thibault Saunier's avatar Thibault Saunier :cactus:
Browse files

ges-xml-formatter: fix memory leak

COVERTY CID 1212148
parent 9cbdfad5
No related branches found
No related tags found
No related merge requests found
...@@ -326,6 +326,9 @@ _parse_track (GMarkupParseContext * context, const gchar * element_name, ...@@ -326,6 +326,9 @@ _parse_track (GMarkupParseContext * context, const gchar * element_name,
ges_base_xml_formatter_add_track (GES_BASE_XML_FORMATTER (self), track_type, ges_base_xml_formatter_add_track (GES_BASE_XML_FORMATTER (self), track_type,
caps, strtrack_id, props, metadatas, error); caps, strtrack_id, props, metadatas, error);
if (props)
gst_structure_free (props);
return; return;
wrong_caps: wrong_caps:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment