summaryrefslogtreecommitdiff
path: root/libavfilter/vf_nnedi.c
diff options
context:
space:
mode:
authorCarl Eugen Hoyos <cehoyos@ag.or.at>2016-02-23 00:19:11 +0100
committerCarl Eugen Hoyos <cehoyos@ag.or.at>2016-02-23 00:19:11 +0100
commit44cf5b41d33a40453784b9b6237bd330ecbfbbb8 (patch)
tree74c2150870b63bd2e8d7a5fe871e8e83fd593ad6 /libavfilter/vf_nnedi.c
parent76377d66b7b8dcd2e3dee2bf2b3f70257f6694f8 (diff)
lavfi/nnedi: Fix a memleak.
Diffstat (limited to 'libavfilter/vf_nnedi.c')
-rw-r--r--libavfilter/vf_nnedi.c1
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);
}