From 674cc26f257c1b1e320d8e695b1b9cf74f8ef83b Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Tue, 9 Feb 2016 13:02:40 +0100 Subject: avfilter/vf_nnedi: Fix memleak Fixes CID1351359 Reviewed-by: Paul B Mahol Signed-off-by: Michael Niedermayer --- libavfilter/vf_nnedi.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavfilter') diff --git a/libavfilter/vf_nnedi.c b/libavfilter/vf_nnedi.c index a1f2952..9a98ec2 100644 --- a/libavfilter/vf_nnedi.c +++ b/libavfilter/vf_nnedi.c @@ -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); -- cgit v1.1