Browse Source

avfilter/vf_maskfun: fix memleak

Fixes #8305
tags/n4.3
Paul B Mahol 5 years ago
parent
commit
3b580f9dfe
1 changed files with 8 additions and 0 deletions
  1. +8
    -0
      libavfilter/vf_maskfun.c

+ 8
- 0
libavfilter/vf_maskfun.c View File

@@ -248,6 +248,13 @@ static int config_input(AVFilterLink *inlink)
return 0;
}

static av_cold void uninit(AVFilterContext *ctx)
{
MaskFunContext *s = ctx->priv;

av_frame_free(&s->empty);
}

static const AVFilterPad maskfun_inputs[] = {
{
.name = "default",
@@ -272,6 +279,7 @@ AVFilter ff_vf_maskfun = {
.description = NULL_IF_CONFIG_SMALL("Create Mask."),
.priv_size = sizeof(MaskFunContext),
.query_formats = query_formats,
.uninit = uninit,
.inputs = maskfun_inputs,
.outputs = maskfun_outputs,
.priv_class = &maskfun_class,


Loading…
Cancel
Save