1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-08-10 06:10:52 +02:00

lavfi/nnedi: Fix a memleak.

This commit is contained in:
Carl Eugen Hoyos
2016-02-23 00:19:11 +01:00
parent 76377d66b7
commit 44cf5b41d3

View File

@@ -1173,6 +1173,7 @@ static av_cold void uninit(AVFilterContext *ctx)
av_freep(&s->frame_data.input); av_freep(&s->frame_data.input);
av_freep(&s->frame_data.temp); av_freep(&s->frame_data.temp);
av_freep(&s->fdsp);
av_frame_free(&s->second); av_frame_free(&s->second);
} }