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
1 changed files with 2 additions and 0 deletions

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);