avfilter/af_acrossover: fix memory leak

Fixes #8304
This commit is contained in:
Paul B Mahol 2019-10-18 10:33:54 +02:00
parent feaec3bc31
commit daf2bef98d
1 changed files with 1 additions and 0 deletions

View File

@ -314,6 +314,7 @@ static av_cold void uninit(AVFilterContext *ctx)
int i;
av_freep(&s->splits);
av_freep(&s->xover);
for (i = 0; i < ctx->nb_outputs; i++)
av_freep(&ctx->output_pads[i].name);