ffmpeg | branch: master | Paul B Mahol <[email protected]> | Thu Oct 3 11:23:23 2019 +0200| [8ca89e52df89b87b278f9d7e369d1b064b740415] | committer: Paul B Mahol
avfilter/f_streamselect: fix memleaks of pad names > http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=8ca89e52df89b87b278f9d7e369d1b064b740415 --- libavfilter/f_streamselect.c | 6 ++++++ 1 file changed, 6 insertions(+) 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) _______________________________________________ ffmpeg-cvslog mailing list [email protected] https://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog To unsubscribe, visit link above, or email [email protected] with subject "unsubscribe".
