mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-01-06 15:21:15 +00:00
avformat/matroskadec: Assert that num_levels is non negative
Maybe Closes: CID1452496 Uninitialized scalar variable Sponsored-by: Sovereign Tech Fund Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
0263b6a48c
commit
019fce18bb
@ -4210,7 +4210,7 @@ static int matroska_parse_cluster(MatroskaDemuxContext *matroska)
|
||||
MatroskaBlock *block = &cluster->block;
|
||||
int res;
|
||||
|
||||
av_assert0(matroska->num_levels <= 2);
|
||||
av_assert0(matroska->num_levels <= 2U);
|
||||
|
||||
if (matroska->num_levels == 1) {
|
||||
res = ebml_parse(matroska, matroska_segment, NULL);
|
||||
|
Loading…
Reference in New Issue
Block a user