From d8a690e64c6a03833a6908fa8b0f14ba50531b68 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Sebastian=20Dr=C3=B6ge?= Date: Sun, 19 Dec 2010 12:53:34 +0100 Subject: [PATCH] qtmux: Free AtomInfo structs --- gst/quicktime/gstqtmux.c | 1 + 1 file changed, 1 insertion(+) diff --git a/gst/quicktime/gstqtmux.c b/gst/quicktime/gstqtmux.c index 8c8ea4251..ba5b9aca8 100644 --- a/gst/quicktime/gstqtmux.c +++ b/gst/quicktime/gstqtmux.c @@ -359,6 +359,7 @@ gst_qt_mux_reset (GstQTMux * qtmux, gboolean alloc) for (walk = qtmux->extra_atoms; walk; walk = g_slist_next (walk)) { AtomInfo *ainfo = (AtomInfo *) walk->data; ainfo->free_func (ainfo->atom); + g_free (ainfo); } g_slist_free (qtmux->extra_atoms); qtmux->extra_atoms = NULL; -- 2.34.1