Commit 6de2f027 authored by Michael Niedermayer's avatar Michael Niedermayer

avfilter/vf_dctdnoiz: use av_freep() to avoid leaving stale pointers in memory

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent eb055295
......@@ -732,14 +732,14 @@ static av_cold void uninit(AVFilterContext *ctx)
int i;
DCTdnoizContext *s = ctx->priv;
av_free(s->weights);
av_freep(&s->weights);
for (i = 0; i < 2; i++) {
av_free(s->cbuf[i][0]);
av_free(s->cbuf[i][1]);
av_free(s->cbuf[i][2]);
av_freep(&s->cbuf[i][0]);
av_freep(&s->cbuf[i][1]);
av_freep(&s->cbuf[i][2]);
}
for (i = 0; i < s->nb_threads; i++) {
av_free(s->slices[i]);
av_freep(&s->slices[i]);
av_expr_free(s->expr[i]);
}
}
......
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