From 7df2981f04dceed352b362ffe6e6c5be3f27046b Mon Sep 17 00:00:00 2001 From: Michael Niedermayer <michaelni@gmx.at> Date: Sat, 22 Nov 2014 18:44:35 +0100 Subject: [PATCH] avfilter/avf_concat: Use av_freep(), avoid leaving stale pointers in memory Signed-off-by: Michael Niedermayer <michaelni@gmx.at> --- libavfilter/avf_concat.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavfilter/avf_concat.c b/libavfilter/avf_concat.c index 266bb361ef8..088d782d465 100644 --- a/libavfilter/avf_concat.c +++ b/libavfilter/avf_concat.c @@ -409,7 +409,7 @@ static av_cold void uninit(AVFilterContext *ctx) } for (i = 0; i < ctx->nb_outputs; i++) av_freep(&ctx->output_pads[i].name); - av_free(cat->in); + av_freep(&cat->in); } AVFilter ff_avf_concat = { -- GitLab