GNOME Bugzilla – Bug 755716
structure-parser: leaks internal lists
Last modified: 2015-09-28 14:14:52 UTC
GList should be freed after usage.
Created attachment 312266 [details] [review] GES_STRUCTURE_PARSER
Review of attachment 312266 [details] [review]: ::: ges/ges-structure-parser.c @@ -37,1 +38,1 @@ - for (tmp = ((GESStructureParser *) self)->structures; tmp; tmp = tmp->next) { + for (tmp = parser->structures; tmp; tmp = tmp->next) { g_list_free_full in this case :)
Created attachment 312271 [details] [review] g_list_free_full the simple is the best. :)
Review of attachment 312271 [details] [review]: OK