diff options
author | Anton Khirnov <anton@khirnov.net> | 2013-03-13 20:43:35 +0100 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2013-03-16 05:37:01 +0100 |
commit | 4750b05d67fd87263cb767b896e1cf55713a39de (patch) | |
tree | df733eb493f86cc988837b68a6d2ec6efad1887a /libavfilter | |
parent | c2b9bd97f5499c972b2af5398dabda191b5775e7 (diff) | |
download | ffmpeg-4750b05d67fd87263cb767b896e1cf55713a39de.tar.gz |
af_join: do not leak input frames.
Diffstat (limited to 'libavfilter')
-rw-r--r-- | libavfilter/af_join.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libavfilter/af_join.c b/libavfilter/af_join.c index 14742de0e4..172eda387d 100644 --- a/libavfilter/af_join.c +++ b/libavfilter/af_join.c @@ -487,7 +487,8 @@ static int join_request_frame(AVFilterLink *outlink) ret = ff_filter_frame(outlink, frame); - memset(s->input_frames, 0, sizeof(*s->input_frames) * ctx->nb_inputs); + for (i = 0; i < ctx->nb_inputs; i++) + av_frame_free(&s->input_frames[i]); return ret; |