Commit 9fcfe4a3 authored by Andreas Cadhalpun's avatar Andreas Cadhalpun

mlvdec: check that index_entries exist

This fixes NULL pointer dereferencing.
Reviewed-by: 's avatarMichael Niedermayer <michael@niedermayer.cc>
Signed-off-by: 's avatarAndreas Cadhalpun <Andreas.Cadhalpun@googlemail.com>
parent 70f13abb
...@@ -365,6 +365,11 @@ static int read_header(AVFormatContext *avctx) ...@@ -365,6 +365,11 @@ static int read_header(AVFormatContext *avctx)
if (ast) if (ast)
ast->duration = ast->nb_index_entries; ast->duration = ast->nb_index_entries;
if ((vst && !vst->nb_index_entries) || (ast && !ast->nb_index_entries)) {
av_log(avctx, AV_LOG_ERROR, "no index entries found\n");
return AVERROR_INVALIDDATA;
}
if (vst && ast) if (vst && ast)
avio_seek(pb, FFMIN(vst->index_entries[0].pos, ast->index_entries[0].pos), SEEK_SET); avio_seek(pb, FFMIN(vst->index_entries[0].pos, ast->index_entries[0].pos), SEEK_SET);
else if (vst) else if (vst)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment