Browse Source

avformat/mov: Move +1 in check to avoid hypothetical overflow in add_ctts_entry()

Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
(cherry picked from commit eb60b9d3aa)
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
tags/n3.2.11
Michael Niedermayer 8 years ago
parent
commit
ea209bee9c
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavformat/mov.c

+ 1
- 1
libavformat/mov.c View File

@@ -2936,7 +2936,7 @@ static int64_t add_ctts_entry(MOVStts** ctts_data, unsigned int* ctts_count, uns
FFMAX(min_size_needed, 2 * (*allocated_size)) :
min_size_needed;

if((unsigned)(*ctts_count) + 1 >= UINT_MAX / sizeof(MOVStts))
if((unsigned)(*ctts_count) >= UINT_MAX / sizeof(MOVStts) - 1)
return -1;

ctts_buf_new = av_fast_realloc(*ctts_data, allocated_size, requested_size);


Loading…
Cancel
Save