summaryrefslogtreecommitdiff
path: root/libavfilter/graphparser.c
diff options
context:
space:
mode:
authorVitor Sessak <vitor1001@gmail.com>2008-05-24 20:42:32 +0000
committerVitor Sessak <vitor1001@gmail.com>2008-05-24 20:42:32 +0000
commit64fbf5e263a0698c6cf6e0580feebe9a6f502ae5 (patch)
tree1cd2b95f11b89b521cd561b860bcb754679539bd /libavfilter/graphparser.c
parent4d11beb293e308e6930a7cba23dbbcd04ca38730 (diff)
One more memory leak
Commited in SoC by Vitor Sessak on 2008-05-24 17:18:03 Originally committed as revision 13359 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavfilter/graphparser.c')
-rw-r--r--libavfilter/graphparser.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/libavfilter/graphparser.c b/libavfilter/graphparser.c
index ea2270f935..794501ebe0 100644
--- a/libavfilter/graphparser.c
+++ b/libavfilter/graphparser.c
@@ -281,6 +281,7 @@ static int parse_inputs(const char **buf, AVFilterInOut **currInputs,
"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));