diff options
author | Carl Eugen Hoyos <cehoyos@rainbow.studorg.tuwien.ac.at> | 2009-10-16 15:16:59 +0000 |
---|---|---|
committer | Carl Eugen Hoyos <cehoyos@rainbow.studorg.tuwien.ac.at> | 2009-10-16 15:16:59 +0000 |
commit | 45fc24a005c170b3fea1c028a49fdb6be61875bd (patch) | |
tree | e17e8bd3cf154b5e1f64898eea24307e24de4fef /libavcodec/xl.c | |
parent | 0b7f39c9d425db649f14cbc927fbce5cdc20828f (diff) | |
download | ffmpeg-45fc24a005c170b3fea1c028a49fdb6be61875bd.tar.gz |
Do not try to free memory that was never allocated (partial revert of r20231).
Originally committed as revision 20252 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/xl.c')
-rw-r--r-- | libavcodec/xl.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/libavcodec/xl.c b/libavcodec/xl.c index 277e92a678..2a5110cb98 100644 --- a/libavcodec/xl.c +++ b/libavcodec/xl.c @@ -134,7 +134,6 @@ static av_cold int decode_end(AVCodecContext *avctx){ if (pic->data[0]) avctx->release_buffer(avctx, pic); - av_freep(&a->pic); return 0; } |