avformat/mov: Disallow empty sidx
It appears this is not allowed "Each Segment Index box documents how a (sub)segment is divided into one or more subsegments (which may themselves be further subdivided using Segment Index boxes)." Fixes: Null pointer dereference Fixes: Ticket9517 Reviewed-by: Paul B Mahol <onemda@gmail.com> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc> (cherry picked from commit 4419433d77278cb742944c4514be5f72a04103c0) Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
77f3f2aaf9
commit
b70429e33c
@ -4586,7 +4586,7 @@ static int mov_read_sidx(MOVContext *c, AVIOContext *pb, MOVAtom atom)
|
||||
index->track_id = track_id;
|
||||
|
||||
index->item_count = avio_rb16(pb);
|
||||
index->items = av_mallocz_array(index->item_count, sizeof(MOVFragmentIndexItem));
|
||||
index->items = index->item_count ? av_mallocz_array(index->item_count, sizeof(MOVFragmentIndexItem)) : NULL;
|
||||
|
||||
if (!index->items) {
|
||||
av_freep(&index);
|
||||
|
Loading…
x
Reference in New Issue
Block a user