diff options
author | Clément Bœsch <clement@stupeflix.com> | 2015-02-18 13:48:41 +0100 |
---|---|---|
committer | Clément Bœsch <clement@stupeflix.com> | 2015-02-18 14:04:10 +0100 |
commit | f40266560b85f9a4b9b2864a52bb60886af8ee0b (patch) | |
tree | 08851ced35f2940e295bcca78ff40af6517508e5 /libavfilter/vf_paletteuse.c | |
parent | 9f6431c8f6c4e92e3f6ea2f3bc8f58677a7e7ce3 (diff) | |
download | ffmpeg-f40266560b85f9a4b9b2864a52bb60886af8ee0b.tar.gz |
avfilter/paletteuse: fix leak in case of error
Fixes CID1270819
Diffstat (limited to 'libavfilter/vf_paletteuse.c')
-rw-r--r-- | libavfilter/vf_paletteuse.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/libavfilter/vf_paletteuse.c b/libavfilter/vf_paletteuse.c index b36f72e4ff..a8defc7582 100644 --- a/libavfilter/vf_paletteuse.c +++ b/libavfilter/vf_paletteuse.c @@ -119,8 +119,12 @@ static int query_formats(AVFilterContext *ctx) AVFilterFormats *in = ff_make_format_list(in_fmts); AVFilterFormats *inpal = ff_make_format_list(inpal_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); + } ff_formats_ref(in, &ctx->inputs[0]->out_formats); ff_formats_ref(inpal, &ctx->inputs[1]->out_formats); ff_formats_ref(out, &ctx->outputs[0]->in_formats); |