1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2024-11-21 10:55:51 +02:00

avfilter/af_aiir: do not forget to free gains too

Signed-off-by: Paul B Mahol <onemda@gmail.com>
This commit is contained in:
Paul B Mahol 2018-01-08 11:22:21 +01:00
parent 205046420d
commit 3f234a0b22

View File

@ -477,6 +477,8 @@ static av_cold void uninit(AVFilterContext *ctx)
}
av_freep(&s->b);
av_freep(&s->g);
av_freep(&s->input);
av_freep(&s->output);