mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2026-02-06 18:00:17 +00:00
avformat/rdt: Check pkt_len
Fixes: CID1473553 Untrusted loop bound
Sponsored-by: Sovereign Tech Fund
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
(cherry picked from commit 0d0373de3b)
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
9c52069b83
commit
807b53c191
1 changed files with 2 additions and 0 deletions
|
|
@ -204,6 +204,8 @@ ff_rdt_parse_header(const uint8_t *buf, int len,
|
|||
return -1; /* not followed by a data packet */
|
||||
|
||||
pkt_len = AV_RB16(buf+3);
|
||||
if (pkt_len > len)
|
||||
return AVERROR_INVALIDDATA;
|
||||
buf += pkt_len;
|
||||
len -= pkt_len;
|
||||
consumed += pkt_len;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue