1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2024-11-21 10:55:51 +02:00

avfilter/paletteuse: fix leak in case of error

Fixes CID1270819
This commit is contained in:
Clément Bœsch 2015-02-18 13:48:41 +01:00
parent 9f6431c8f6
commit f40266560b

View File

@ -119,8 +119,12 @@ static int query_formats(AVFilterContext *ctx)
AVFilterFormats *in = ff_make_format_list(in_fmts); AVFilterFormats *in = ff_make_format_list(in_fmts);
AVFilterFormats *inpal = ff_make_format_list(inpal_fmts); AVFilterFormats *inpal = ff_make_format_list(inpal_fmts);
AVFilterFormats *out = ff_make_format_list(out_fmts); AVFilterFormats *out = ff_make_format_list(out_fmts);
if (!in || !inpal || !out) if (!in || !inpal || !out) {
av_freep(&in);
av_freep(&inpal);
av_freep(&out);
return AVERROR(ENOMEM); return AVERROR(ENOMEM);
}
ff_formats_ref(in, &ctx->inputs[0]->out_formats); ff_formats_ref(in, &ctx->inputs[0]->out_formats);
ff_formats_ref(inpal, &ctx->inputs[1]->out_formats); ff_formats_ref(inpal, &ctx->inputs[1]->out_formats);
ff_formats_ref(out, &ctx->outputs[0]->in_formats); ff_formats_ref(out, &ctx->outputs[0]->in_formats);