matroskadec: fix a sanity check.

release/1.0
Anton Khirnov 13 years ago
parent bdb939ad73
commit 87b017a298
  1. 2
      libavformat/matroskadec.c

@ -1804,7 +1804,7 @@ static int matroska_parse_laces(MatroskaDemuxContext *matroska, uint8_t **buf,
}
case 0x2: /* fixed-size lacing */
if (size != (size / *laces) * size) {
if (size % (*laces)) {
res = AVERROR_INVALIDDATA;
break;
}

Loading…
Cancel
Save