summaryrefslogtreecommitdiff
path: root/libavcodec/apedec.c
diff options
context:
space:
mode:
authorKostya Shishkov <kostya.shishkov@gmail.com>2010-02-19 22:23:55 +0000
committerKostya Shishkov <kostya.shishkov@gmail.com>2010-02-19 22:23:55 +0000
commit4689ac41e9d3bb3627bbbd1b95264a385baab73e (patch)
tree469fc2b5f2032794bb8498e10f7822602a30481b /libavcodec/apedec.c
parentce8f750c291790a4fddb2e333308eb160a65d807 (diff)
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
Diffstat (limited to 'libavcodec/apedec.c')
-rw-r--r--libavcodec/apedec.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/apedec.c b/libavcodec/apedec.c
index c27d0863ef..f7b6e07d6d 100644
--- a/libavcodec/apedec.c
+++ b/libavcodec/apedec.c
@@ -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;
}