avcodec/bmp_parser: Check fsize

Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
pull/218/head
Michael Niedermayer 9 years ago
parent 37005e65eb
commit 43a4276c69
  1. 1
      libavcodec/bmp_parser.c

@ -53,6 +53,7 @@ restart:
if (bpc->pc.frame_start_found == 0) { if (bpc->pc.frame_start_found == 0) {
if ((state >> 48) == (('B' << 8) | 'M')) { if ((state >> 48) == (('B' << 8) | 'M')) {
bpc->fsize = av_bswap32(state >> 16); bpc->fsize = av_bswap32(state >> 16);
if (bpc->fsize > 17)
bpc->pc.frame_start_found = 1; bpc->pc.frame_start_found = 1;
} }
} else if (bpc->pc.frame_start_found == 2+4+4) { } else if (bpc->pc.frame_start_found == 2+4+4) {

Loading…
Cancel
Save