Browse Source

avfilter/f_interleave: check ff_insert_inpad() for failure

Signed-off-by: Paul B Mahol <onemda@gmail.com>
tags/n3.4
Paul B Mahol 7 years ago
parent
commit
9bd1bf382e
1 changed files with 5 additions and 2 deletions
  1. +5
    -2
      libavfilter/f_interleave.c

+ 5
- 2
libavfilter/f_interleave.c View File

@@ -110,7 +110,7 @@ static av_cold int init(AVFilterContext *ctx)
{
InterleaveContext *s = ctx->priv;
const AVFilterPad *outpad = &ctx->filter->outputs[0];
int i;
int i, ret;

s->queues = av_calloc(s->nb_inputs, sizeof(s->queues[0]));
if (!s->queues)
@@ -133,7 +133,10 @@ static av_cold int init(AVFilterContext *ctx)
default:
av_assert0(0);
}
ff_insert_inpad(ctx, i, &inpad);
if ((ret = ff_insert_inpad(ctx, i, &inpad)) < 0) {
av_freep(&inpad.name);
return ret;
}
}

return 0;


Loading…
Cancel
Save