Commit 721af294 authored by Luca Barbato's avatar Luca Barbato

mkv: forward EMBL block data error

Do not return 0 on error.
parent 85395ba7
...@@ -1717,7 +1717,7 @@ static int matroska_parse_block(MatroskaDemuxContext *matroska, uint8_t *data, ...@@ -1717,7 +1717,7 @@ static int matroska_parse_block(MatroskaDemuxContext *matroska, uint8_t *data,
if ((n = matroska_ebmlnum_uint(matroska, data, size, &num)) < 0) { if ((n = matroska_ebmlnum_uint(matroska, data, size, &num)) < 0) {
av_log(matroska->ctx, AV_LOG_ERROR, "EBML block data error\n"); av_log(matroska->ctx, AV_LOG_ERROR, "EBML block data error\n");
return res; return n;
} }
data += n; data += n;
size -= n; size -= 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