Browse Source

avformat/genh: Check block_align

Fixes: infinite loop
Fixes: 26440/clusterfuzz-testcase-minimized-ffmpeg_dem_GENH_fuzzer-5632134020333568

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
37396e9ba8
1 changed files with 3 additions and 0 deletions
  1. +3
    -0
      libavformat/genh.c

+ 3
- 0
libavformat/genh.c View File

@@ -146,6 +146,9 @@ static int genh_read_header(AVFormatContext *s)
}
}

if (st->codecpar->block_align <= 0)
return AVERROR_INVALIDDATA;

avio_skip(s->pb, start_offset - avio_tell(s->pb));

avpriv_set_pts_info(st, 64, 1, st->codecpar->sample_rate);


Loading…
Cancel
Save