Browse Source

avformat/aadec: Check for EOF while reading chapters

Fixes: timeout
Fixes: 28199/clusterfuzz-testcase-minimized-ffmpeg_dem_AA_fuzzer-4896162657861632

Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
tags/n4.4
Michael Niedermayer 5 years ago
parent
commit
bcc7d14453
1 changed files with 2 additions and 1 deletions
  1. +2
    -1
      libavformat/aadec.c

+ 2
- 1
libavformat/aadec.c View File

@@ -223,7 +223,8 @@ static int aa_read_header(AVFormatContext *s)
while ((chapter_pos = avio_tell(pb)) >= 0 && chapter_pos < c->content_end) {
int chapter_idx = s->nb_chapters;
uint32_t chapter_size = avio_rb32(pb);
if (chapter_size == 0) break;
if (chapter_size == 0 || avio_feof(pb))
break;
chapter_pos -= start + CHAPTER_HEADER_SIZE * chapter_idx;
avio_skip(pb, 4 + chapter_size);
if (!avpriv_new_chapter(s, chapter_idx, st->time_base,


Loading…
Cancel
Save