mirror of
https://github.com/xenia-project/FFmpeg.git
synced 2024-11-25 04:30:02 +00:00
avformat/oggparseogm: Check lb against psize
No testcase, this was found during code review Found-by: Matt Wolenetz <wolenetz@google.com> Reviewed-by: Matt Wolenetz <wolenetz@google.com> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
010b7b30b7
commit
3e7c847aaf
@ -176,6 +176,9 @@ ogm_packet(AVFormatContext *s, int idx)
|
||||
os->pflags |= AV_PKT_FLAG_KEY;
|
||||
|
||||
lb = ((*p & 2) << 1) | ((*p >> 6) & 3);
|
||||
if (os->psize < lb + 1)
|
||||
return AVERROR_INVALIDDATA;
|
||||
|
||||
os->pstart += lb + 1;
|
||||
os->psize -= lb + 1;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user