id3v2: skip broken tags with invalid size

fixes issue2649.
oldabi
Anton Khirnov 14 years ago committed by Justin Ruggles
parent 1885488757
commit c5f4c0fd5c
  1. 8
      libavformat/id3v2.c

@ -237,11 +237,11 @@ static void ff_id3v2_parse(AVFormatContext *s, int len, uint8_t version, uint8_t
tag[3] = 0; tag[3] = 0;
tlen = avio_rb24(s->pb); tlen = avio_rb24(s->pb);
} }
len -= taghdrlen + tlen; if (tlen < 0 || tlen > len - taghdrlen) {
av_log(s, AV_LOG_WARNING, "Invalid size in frame %s, skipping the rest of tag.\n", tag);
if (len < 0)
break; break;
}
len -= taghdrlen + tlen;
next = avio_tell(s->pb) + tlen; next = avio_tell(s->pb) + tlen;
if (tflags & ID3v2_FLAG_DATALEN) { if (tflags & ID3v2_FLAG_DATALEN) {

Loading…
Cancel
Save