avfilter/af_adelay: use av_freep(), do not leave stale pointers in memory

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
Michael Niedermayer 2014-10-07 13:44:26 +02:00
parent aba873bbd0
commit 2d6f31730c

View File

@ -246,7 +246,7 @@ static av_cold void uninit(AVFilterContext *ctx)
int i; int i;
for (i = 0; i < s->nb_delays; i++) for (i = 0; i < s->nb_delays; i++)
av_free(s->chandelay[i].samples); av_freep(&s->chandelay[i].samples);
av_freep(&s->chandelay); av_freep(&s->chandelay);
} }