1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-11-23 21:54:53 +02:00

avfilter/vf_colorcorrect: fix memory leaks

(cherry picked from commit 5f87a68cf7)
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
Paul B Mahol
2023-11-27 12:08:20 +01:00
committed by Michael Niedermayer
parent a279a8620e
commit a4b6e37ad5

View File

@@ -497,6 +497,8 @@ static av_cold void uninit(AVFilterContext *ctx)
ColorCorrectContext *s = ctx->priv;
av_freep(&s->analyzeret);
av_freep(&s->uhistogram);
av_freep(&s->vhistogram);
}
static const AVFilterPad colorcorrect_inputs[] = {