diff options
author | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2016-02-23 00:19:11 +0100 |
---|---|---|
committer | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2016-02-23 00:19:11 +0100 |
commit | 44cf5b41d33a40453784b9b6237bd330ecbfbbb8 (patch) | |
tree | 74c2150870b63bd2e8d7a5fe871e8e83fd593ad6 | |
parent | 76377d66b7b8dcd2e3dee2bf2b3f70257f6694f8 (diff) | |
download | ffmpeg-44cf5b41d33a40453784b9b6237bd330ecbfbbb8.tar.gz |
lavfi/nnedi: Fix a memleak.
-rw-r--r-- | libavfilter/vf_nnedi.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavfilter/vf_nnedi.c b/libavfilter/vf_nnedi.c index 330d3d6501..ad0c52ac7e 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); } |