Fix memcpy out-of-bounds.

patch by Michel Bardiaux, mbardiaux mediaxim be

Originally committed as revision 7780 to svn://svn.ffmpeg.org/ffmpeg/trunk
pull/126/head
Michel Bardiaux 18 years ago committed by Diego Biurrun
parent 960e48f8f0
commit e8f917d6fd
  1. 2
      libavcodec/bmp.c

@ -187,7 +187,7 @@ static int bmp_decode_frame(AVCodecContext *avctx,
switch(depth){
case 24:
for(i = 0; i < avctx->height; i++){
memcpy(ptr, buf, n);
memcpy(ptr, buf, avctx->width*(depth>>3));
buf += n;
ptr += linesize;
}

Loading…
Cancel
Save