mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-02-04 06:08:26 +02:00
matroskadec: change assert to av_assert0()
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
71529bd8c5
commit
88a740afde
@ -1907,7 +1907,7 @@ static int matroska_parse_block(MatroskaDemuxContext *matroska, uint8_t *data,
|
|||||||
case 0x1: /* Xiph lacing */
|
case 0x1: /* Xiph lacing */
|
||||||
case 0x2: /* fixed-size lacing */
|
case 0x2: /* fixed-size lacing */
|
||||||
case 0x3: /* EBML lacing */
|
case 0x3: /* EBML lacing */
|
||||||
assert(size>0); // size <=3 is checked before size-=3 above
|
av_assert0(size>0); // size <=3 is checked before size-=3 above
|
||||||
laces = (*data) + 1;
|
laces = (*data) + 1;
|
||||||
data += 1;
|
data += 1;
|
||||||
size -= 1;
|
size -= 1;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user