You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-07-16 22:42:38 +02:00
avfilter/vf_dctdnoiz: use av_freep() to avoid leaving stale pointers in memory
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
@ -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]);
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user