avcodec/dirac_parser: Fix potential overflows in pointer checks
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc> (cherry picked from commit 79798f7c57b098c78e0bbc6becd64b9888b013d1) Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
1601420be4
commit
d092b7f04c
@ -100,10 +100,12 @@ typedef struct DiracParseUnit {
|
|||||||
static int unpack_parse_unit(DiracParseUnit *pu, DiracParseContext *pc,
|
static int unpack_parse_unit(DiracParseUnit *pu, DiracParseContext *pc,
|
||||||
int offset)
|
int offset)
|
||||||
{
|
{
|
||||||
uint8_t *start = pc->buffer + offset;
|
int8_t *start;
|
||||||
uint8_t *end = pc->buffer + pc->index;
|
|
||||||
if (start < pc->buffer || (start + 13 > end))
|
if (offset < 0 || pc->index - 13 < offset)
|
||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
|
start = pc->buffer + offset;
|
||||||
pu->pu_type = start[4];
|
pu->pu_type = start[4];
|
||||||
|
|
||||||
pu->next_pu_offset = AV_RB32(start + 5);
|
pu->next_pu_offset = AV_RB32(start + 5);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user