Commit d9fe6b92 authored by Michael Niedermayer's avatar Michael Niedermayer

matroskadec: Fix null pointer exception on corrupted input.

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent b89f9407
......@@ -1377,7 +1377,7 @@ static int matroska_read_header(AVFormatContext *s)
/* First read the EBML header. */
if (ebml_parse(matroska, ebml_syntax, &ebml)
|| ebml.version > EBML_VERSION || ebml.max_size > sizeof(uint64_t)
|| ebml.id_length > sizeof(uint32_t) || ebml.doctype_version > 3) {
|| ebml.id_length > sizeof(uint32_t) || ebml.doctype_version > 3 || !ebml.doctype) {
av_log(matroska->ctx, AV_LOG_ERROR,
"EBML header using unsupported features\n"
"(EBML version %"PRIu64", doctype %s, doc version %"PRIu64")\n",
......
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