diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2014-10-14 18:52:51 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-10-14 20:46:15 +0200 |
commit | f43ac027232f6aeb826d7c29b1dfca9b3876f3ed (patch) | |
tree | a4397fa74ada462b5bff34d114682ca8c63061fc /libavcodec/psymodel.c | |
parent | 43fb16cf74718fe6c393c5f20d0bfaea4e3e8cb4 (diff) | |
download | ffmpeg-f43ac027232f6aeb826d7c29b1dfca9b3876f3ed.tar.gz |
avcodec/iirfilter: Make ff_iir_filter_free_state() also zero the freed pointer
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/psymodel.c')
-rw-r--r-- | libavcodec/psymodel.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/psymodel.c b/libavcodec/psymodel.c index e7f3353c55..059cbefe37 100644 --- a/libavcodec/psymodel.c +++ b/libavcodec/psymodel.c @@ -141,7 +141,7 @@ av_cold void ff_psy_preprocess_end(struct FFPsyPreprocessContext *ctx) ff_iir_filter_free_coeffsp(&ctx->fcoeffs); if (ctx->fstate) for (i = 0; i < ctx->avctx->channels; i++) - ff_iir_filter_free_state(ctx->fstate[i]); + ff_iir_filter_free_statep(&ctx->fstate[i]); av_freep(&ctx->fstate); av_free(ctx); } |