mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-01-08 13:22:53 +02:00
avformat/mpeg: Check len in mpegps_probe()
Fixes: CID1473590 Untrusted loop bound
Sponsored-by: Sovereign Tech Fund
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
(cherry picked from commit ca237a841e
)
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
a4f8bb40e1
commit
624f15e77d
@ -75,6 +75,9 @@ static int mpegps_probe(const AVProbeData *p)
|
||||
int pes = endpes <= i && check_pes(p->buf + i, p->buf + p->buf_size);
|
||||
int pack = check_pack_header(p->buf + i);
|
||||
|
||||
if (len > INT_MAX - i)
|
||||
break;
|
||||
|
||||
if (code == SYSTEM_HEADER_START_CODE)
|
||||
sys++;
|
||||
else if (code == PACK_START_CODE && pack)
|
||||
|
Loading…
Reference in New Issue
Block a user