[FFmpeg-soc] [soc]: r2205 - libavfilter/graphparser.c
vitor
subversion at mplayerhq.hu
Sat May 24 19:18:03 CEST 2008
Author: vitor
Date: Sat May 24 19:18:03 2008
New Revision: 2205
Log:
One more memory leak
Modified:
libavfilter/graphparser.c
Modified: libavfilter/graphparser.c
==============================================================================
--- libavfilter/graphparser.c (original)
+++ libavfilter/graphparser.c Sat May 24 19:18:03 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-soc
mailing list