Commit 673fce6d authored by Paul B Mahol's avatar Paul B Mahol

avfilter/vf_tile: fix memory leak

Fixes #8313
parent 357f11ec
......@@ -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);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment