[FFmpeg-cvslog] r13359 - trunk/libavfilter/graphparser.c

vitor subversion
Sat May 24 22:42:33 CEST 2008


Author: vitor
Date: Sat May 24 22:42:32 2008
New Revision: 13359

Log:
One more memory leak
Commited in SoC by Vitor Sessak on 2008-05-24 17:18:03


Modified:
   trunk/libavfilter/graphparser.c

Modified: trunk/libavfilter/graphparser.c
==============================================================================
--- trunk/libavfilter/graphparser.c	(original)
+++ trunk/libavfilter/graphparser.c	Sat May 24 22:42:32 2008
@@ -281,6 +281,7 @@ static int parse_inputs(const char **buf
                        "Label \"%s\" appears twice as input!\n", match->name);
                 return -1;
             }
+            av_free(name);
         } else {
             /* Not in the list, so add it as an input */
             match = av_mallocz(sizeof(AVFilterInOut));




More information about the ffmpeg-cvslog mailing list