diff --git a/ChangeLog b/ChangeLog index 8c01208661..de20337f2f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2005-12-12 Michael Smith + + * ext/ogg/gstoggdemux.c: (gst_ogg_type_find): + Use the correct function to free list of typefind factories. + 2005-12-12 Wim Taymans * gst/videotestsrc/gstvideotestsrc.c: diff --git a/ext/ogg/gstoggdemux.c b/ext/ogg/gstoggdemux.c index d6e25bb599..bdd6cbe1a5 100644 --- a/ext/ogg/gstoggdemux.c +++ b/ext/ogg/gstoggdemux.c @@ -2688,7 +2688,7 @@ gst_ogg_type_find (ogg_packet * packet) walk = g_list_next (walk); } - g_list_free (type_list); + gst_plugin_feature_list_free (type_list); if (find.best_probability > 0) return find.caps;