[FFmpeg-cvslog] lavfi/nnedi: Fix a memleak.
Carl Eugen Hoyos
git at videolan.org
Tue Feb 23 00:21:35 CET 2016
ffmpeg | branch: master | Carl Eugen Hoyos <cehoyos at ag.or.at> | Tue Feb 23 00:19:11 2016 +0100| [44cf5b41d33a40453784b9b6237bd330ecbfbbb8] | committer: Carl Eugen Hoyos
lavfi/nnedi: Fix a memleak.
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=44cf5b41d33a40453784b9b6237bd330ecbfbbb8
---
libavfilter/vf_nnedi.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/libavfilter/vf_nnedi.c b/libavfilter/vf_nnedi.c
index 330d3d6..ad0c52a 100644
--- a/libavfilter/vf_nnedi.c
+++ b/libavfilter/vf_nnedi.c
@@ -1173,6 +1173,7 @@ static av_cold void uninit(AVFilterContext *ctx)
av_freep(&s->frame_data.input);
av_freep(&s->frame_data.temp);
+ av_freep(&s->fdsp);
av_frame_free(&s->second);
}
More information about the ffmpeg-cvslog
mailing list