Commit 674cc26f authored by Michael Niedermayer's avatar Michael Niedermayer

avfilter/vf_nnedi: Fix memleak

Fixes CID1351359
Reviewed-by: 's avatarPaul B Mahol <onemda@gmail.com>
Signed-off-by: 's avatarMichael Niedermayer <michael@niedermayer.cc>
parent 331a33d7
......@@ -1154,7 +1154,7 @@ static av_cold int init(AVFilterContext *ctx)
s->fdsp = avpriv_float_dsp_alloc(0);
if (!s->fdsp)
return AVERROR(ENOMEM);
ret = AVERROR(ENOMEM);
fail:
av_free(bdata);
......
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