diff --git a/ChangeLog b/ChangeLog index f4cb583bb6..8f060ffa1a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2005-11-29 Julien MOUTTE + + * ext/ogg/gstoggdemux.c: (gst_ogg_type_find): Free the list, + patch from bug #322704 (Alessandro Decina). + 2005-11-29 Thomas Vander Stichele * gst-libs/gst/audio/Makefile.am: diff --git a/ext/ogg/gstoggdemux.c b/ext/ogg/gstoggdemux.c index 67c696ce4c..d428596f2b 100644 --- a/ext/ogg/gstoggdemux.c +++ b/ext/ogg/gstoggdemux.c @@ -2662,6 +2662,8 @@ gst_ogg_type_find (ogg_packet * packet) walk = g_list_next (walk); } + g_list_free (type_list); + if (find.best_probability > 0) return find.caps;