From 84db6c6101f063d9dafca25f86fc51a02d730329 Mon Sep 17 00:00:00 2001 From: Sebastian Dröge Date: Fri, 18 Jan 2008 10:05:53 +0000 Subject: gst/multifile/gstmultifilesrc.c: Fix memory leak spotted by the unit test. Original commit message from CVS: * gst/multifile/gstmultifilesrc.c: (gst_multi_file_src_create): Fix memory leak spotted by the unit test. --- gst/multifile/gstmultifilesrc.c | 1 + 1 file changed, 1 insertion(+) diff --git a/gst/multifile/gstmultifilesrc.c b/gst/multifile/gstmultifilesrc.c index 35ded484..f2de1b86 100644 --- a/gst/multifile/gstmultifilesrc.c +++ b/gst/multifile/gstmultifilesrc.c @@ -283,6 +283,7 @@ gst_multi_file_src_create (GstPushSrc * src, GstBuffer ** buffer) if (multifilesrc->successful_read) { /* If we've read at least one buffer successfully, not finding the * next file is EOS. */ + g_free (filename); return GST_FLOW_UNEXPECTED; } else { goto handle_error; -- cgit