From 8ca89e52df89b87b278f9d7e369d1b064b740415 Mon Sep 17 00:00:00 2001 From: Paul B Mahol Date: Thu, 3 Oct 2019 11:23:23 +0200 Subject: avfilter/f_streamselect: fix memleaks of pad names --- libavfilter/f_streamselect.c | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'libavfilter/f_streamselect.c') diff --git a/libavfilter/f_streamselect.c b/libavfilter/f_streamselect.c index 4b913d37f4..7a1ff775f4 100644 --- a/libavfilter/f_streamselect.c +++ b/libavfilter/f_streamselect.c @@ -294,6 +294,12 @@ static av_cold void uninit(AVFilterContext *ctx) av_freep(&s->map); av_freep(&s->frames); ff_framesync_uninit(&s->fs); + + for (int i = 0; i < ctx->nb_inputs; i++) + av_freep(&ctx->input_pads[i].name); + + for (int i = 0; i < ctx->nb_outputs; i++) + av_freep(&ctx->output_pads[i].name); } static int query_formats(AVFilterContext *ctx) -- cgit v1.2.3