avfilter/vf_gblur: use av_freep()

This commit is contained in:
Paul B Mahol 2022-02-10 08:44:18 +01:00
parent e1edfe6416
commit a0ede3cb56
1 changed files with 1 additions and 2 deletions

View File

@ -384,8 +384,7 @@ static av_cold void uninit(AVFilterContext *ctx)
GBlurContext *s = ctx->priv;
av_freep(&s->buffer);
if (s->localbuf)
av_free(s->localbuf);
av_freep(&s->localbuf);
}
static const AVFilterPad gblur_inputs[] = {