1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2024-11-26 19:01:44 +02:00

16l trocadero: don't forget to free frame data buffer in APE decoder

Originally committed as revision 21910 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Kostya Shishkov 2010-02-19 22:23:55 +00:00
parent ce8f750c29
commit 4689ac41e9

View File

@ -211,6 +211,7 @@ static av_cold int ape_decode_close(AVCodecContext * avctx)
for (i = 0; i < APE_FILTER_LEVELS; i++)
av_freep(&s->filterbuf[i]);
av_freep(&s->data);
return 0;
}