Commit 01b986cf authored by Paul B Mahol's avatar Paul B Mahol

avfilter/f_select: check ff_insert_outpad() for failure

Signed-off-by: 's avatarPaul B Mahol <onemda@gmail.com>
parent 730734d4
......@@ -186,7 +186,10 @@ static av_cold int init(AVFilterContext *ctx)
return AVERROR(ENOMEM);
pad.type = ctx->filter->inputs[0].type;
pad.request_frame = request_frame;
ff_insert_outpad(ctx, i, &pad);
if ((ret = ff_insert_outpad(ctx, i, &pad)) < 0) {
av_freep(&pad.name);
return ret;
}
}
return 0;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment