avfilter/vf_tile: fix memory leak

Fixes #8313
pull/324/head
Paul B Mahol 5 years ago
parent 357f11eca2
commit 673fce6d40
  1. 1
      libavfilter/vf_tile.c

@ -262,6 +262,7 @@ static av_cold void uninit(AVFilterContext *ctx)
{
TileContext *tile = ctx->priv;
av_frame_free(&tile->out_ref);
av_frame_free(&tile->prev_out_ref);
}

Loading…
Cancel
Save