avfilter/vf_gblur: use av_freep()

release/5.1
Paul B Mahol 3 years ago
parent e1edfe6416
commit a0ede3cb56
  1. 3
      libavfilter/vf_gblur.c

@ -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[] = {

Loading…
Cancel
Save