From 63eb14e5dd495d3544b25de4e373a34659649194 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Dr=C3=B6ge?= 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(+) (limited to 'gst/multifile/gstmultifilesrc.c') 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 v1.2.1