Browse Source

fix mem leak

patch by Oliver Pfister: [oliver pfister gmx ch]

Originally committed as revision 9490 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Oliver Pfister Benoit Fouet 18 years ago
parent
commit
7b62bb2b8d
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavcodec/huffyuv.c

+ 1
- 1
libavcodec/huffyuv.c View File

@@ -1218,7 +1218,7 @@ static int decode_end(AVCodecContext *avctx)
common_end(s); common_end(s);
av_freep(&s->bitstream_buffer); av_freep(&s->bitstream_buffer);


for(i=0; i<3; i++){
for(i=0; i<6; i++){
free_vlc(&s->vlc[i]); free_vlc(&s->vlc[i]);
} }




Loading…
Cancel
Save