Commit 42402a55 authored by Kostya Shishkov's avatar Kostya Shishkov

Make BMP decoder try to decode files with incorrect filesize field value

Originally committed as revision 17363 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent f9d5bf3c
......@@ -64,9 +64,9 @@ static int bmp_decode_frame(AVCodecContext *avctx,
fsize = bytestream_get_le32(&buf);
if(buf_size < fsize){
av_log(avctx, AV_LOG_ERROR, "not enough data (%d < %d)\n",
av_log(avctx, AV_LOG_ERROR, "not enough data (%d < %d), trying to decode anyway\n",
buf_size, fsize);
return -1;
fsize = buf_size;
}
buf += 2; /* reserved1 */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment