ext/ogg/gstoggdemux.c: Free the list, patch from bug #322704 (Alessandro Decina).
authorJulien Moutte <julien@moutte.net>
Tue, 29 Nov 2005 08:27:08 +0000 (08:27 +0000)
committerJulien Moutte <julien@moutte.net>
Tue, 29 Nov 2005 08:27:08 +0000 (08:27 +0000)
Original commit message from CVS:
2005-11-29  Julien MOUTTE  <julien@moutte.net>

* ext/ogg/gstoggdemux.c: (gst_ogg_type_find): Free the list,
patch from bug #322704 (Alessandro Decina).

ChangeLog
ext/ogg/gstoggdemux.c

index f4cb583..8f060ff 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2005-11-29  Julien MOUTTE  <julien@moutte.net>
+
+       * ext/ogg/gstoggdemux.c: (gst_ogg_type_find): Free the list,
+       patch from bug #322704 (Alessandro Decina).
+
 2005-11-29  Thomas Vander Stichele  <thomas at apestaart dot org>
 
        * gst-libs/gst/audio/Makefile.am:
index 67c696c..d428596 100644 (file)
@@ -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;