Browse Source

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

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n2.6
Michael Niedermayer 11 years ago
parent
commit
6de2f027cd
1 changed files with 5 additions and 5 deletions
  1. +5
    -5
      libavfilter/vf_dctdnoiz.c

+ 5
- 5
libavfilter/vf_dctdnoiz.c View File

@@ -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]);
}
}


Loading…
Cancel
Save