Commit f39136b0 authored by Paul B Mahol's avatar Paul B Mahol

avfilter/af_merge: check ff_insert_inpad() for failure

Signed-off-by: 's avatarPaul B Mahol <onemda@gmail.com>
parent db5604ac
...@@ -322,7 +322,7 @@ static int filter_frame(AVFilterLink *inlink, AVFrame *insamples) ...@@ -322,7 +322,7 @@ static int filter_frame(AVFilterLink *inlink, AVFrame *insamples)
static av_cold int init(AVFilterContext *ctx) static av_cold int init(AVFilterContext *ctx)
{ {
AMergeContext *s = ctx->priv; AMergeContext *s = ctx->priv;
int i; int i, ret;
s->in = av_calloc(s->nb_inputs, sizeof(*s->in)); s->in = av_calloc(s->nb_inputs, sizeof(*s->in));
if (!s->in) if (!s->in)
...@@ -336,7 +336,10 @@ static av_cold int init(AVFilterContext *ctx) ...@@ -336,7 +336,10 @@ static av_cold int init(AVFilterContext *ctx)
}; };
if (!name) if (!name)
return AVERROR(ENOMEM); return AVERROR(ENOMEM);
ff_insert_inpad(ctx, i, &pad); if ((ret = ff_insert_inpad(ctx, i, &pad)) < 0) {
av_freep(&pad.name);
return ret;
}
} }
return 0; 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