diff mbox

[FFmpeg-devel,2/3] avformat/vpk: Check offset for validity

Message ID 20190606215059.6935-2-michael@niedermayer.cc
State Accepted
Commit aa003019ab9ec5ef7e7b3ff9d6262d3472b427eb
Headers show

Commit Message

Michael Niedermayer June 6, 2019, 9:50 p.m. UTC
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
---
 libavformat/vpk.c | 3 +++
 1 file changed, 3 insertions(+)
diff mbox

Patch

diff --git a/libavformat/vpk.c b/libavformat/vpk.c
index dcc2db329c..255d6030b0 100644
--- a/libavformat/vpk.c
+++ b/libavformat/vpk.c
@@ -66,6 +66,9 @@  static int vpk_read_header(AVFormatContext *s)
         return AVERROR_INVALIDDATA;
     vpk->block_count       = (st->duration + (samples_per_block - 1)) / samples_per_block;
     vpk->last_block_size   = (st->duration % samples_per_block) * 16 * st->codecpar->channels / 28;
+
+    if (offset < avio_tell(s->pb))
+        return AVERROR_INVALIDDATA;
     avio_skip(s->pb, offset - avio_tell(s->pb));
     avpriv_set_pts_info(st, 64, 1, st->codecpar->sample_rate);