mirror of https://git.ffmpeg.org/ffmpeg.git
avcodec/ac3dec: use av_freep() for saftey
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
27f77a372b
commit
c00f368caa
|
@ -1609,7 +1609,7 @@ static av_cold int ac3_decode_end(AVCodecContext *avctx)
|
|||
ff_mdct_end(&s->imdct_512);
|
||||
ff_mdct_end(&s->imdct_256);
|
||||
#if (USE_FIXED)
|
||||
av_free(s->fdsp);
|
||||
av_freep(&s->fdsp);
|
||||
#endif
|
||||
|
||||
return 0;
|
||||
|
|
Loading…
Reference in New Issue