diff options
author | Michael Niedermayer <michael@niedermayer.cc> | 2019-03-05 00:48:18 +0100 |
---|---|---|
committer | Michael Niedermayer <michael@niedermayer.cc> | 2019-03-14 16:24:35 +0100 |
commit | 38381400fca45d1ae6e7604335b507b7dc70a903 (patch) | |
tree | 5d8ec355bbcacbd5f98506ced5920fc3b35acda7 /libavformat/gdv.c | |
parent | 0321370601833f4ae47e8e11c44570ea4bd382a4 (diff) | |
download | ffmpeg-38381400fca45d1ae6e7604335b507b7dc70a903.tar.gz |
avformat/gdv: Check fps
Fixes: Division by 0
Fixes: ffmpeg_zero_division.bin
Found-by: Anatoly Trosinenko <anatoly.trosinenko@gmail.com>
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'libavformat/gdv.c')
-rw-r--r-- | libavformat/gdv.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libavformat/gdv.c b/libavformat/gdv.c index a69c349cab..3ead383892 100644 --- a/libavformat/gdv.c +++ b/libavformat/gdv.c @@ -86,6 +86,9 @@ static int gdv_read_header(AVFormatContext *ctx) vst->nb_frames = avio_rl16(pb); fps = avio_rl16(pb); + if (!fps) + return AVERROR_INVALIDDATA; + snd_flags = avio_rl16(pb); if (snd_flags & 1) { ast = avformat_new_stream(ctx, 0); |