From 0b940c95b2171cb1035c79b85492f5f6cdb060a6 Mon Sep 17 00:00:00 2001 From: Paul B Mahol Date: Fri, 25 Aug 2017 10:23:21 +0200 Subject: avfilter/vf_decimate: check ff_insert_inpad() for failure Signed-off-by: Paul B Mahol --- libavfilter/vf_decimate.c | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) (limited to 'libavfilter') diff --git a/libavfilter/vf_decimate.c b/libavfilter/vf_decimate.c index f9a40f2d4c..53347c7f10 100644 --- a/libavfilter/vf_decimate.c +++ b/libavfilter/vf_decimate.c @@ -276,17 +276,24 @@ static av_cold int decimate_init(AVFilterContext *ctx) .filter_frame = filter_frame, .config_props = config_input, }; + int ret; if (!pad.name) return AVERROR(ENOMEM); - ff_insert_inpad(ctx, INPUT_MAIN, &pad); + if ((ret = ff_insert_inpad(ctx, INPUT_MAIN, &pad)) < 0) { + av_freep(&pad.name); + return ret; + } if (dm->ppsrc) { pad.name = av_strdup("clean_src"); pad.config_props = NULL; if (!pad.name) return AVERROR(ENOMEM); - ff_insert_inpad(ctx, INPUT_CLEANSRC, &pad); + if ((ret = ff_insert_inpad(ctx, INPUT_CLEANSRC, &pad)) < 0) { + av_freep(&pad.name); + return ret; + } } if ((dm->blockx & (dm->blockx - 1)) || -- cgit v1.2.3