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:
parent
960e48f8f0
commit
e8f917d6fd
@ -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…
Reference in New Issue
Block a user