Fix memcpy out-of-bounds.

patch by Michel Bardiaux, mbardiaux mediaxim be

Originally committed as revision 7780 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Michel Bardiaux 2007-01-31 11:19:48 +00:00 committed by Diego Biurrun
parent 960e48f8f0
commit e8f917d6fd
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}