Commit 70e022cf authored by Michael Niedermayer's avatar Michael Niedermayer

avformat/idcin: Remove redundant chunk size check

Fixes CID1138438
Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 171af59d
......@@ -307,8 +307,6 @@ static int idcin_read_packet(AVFormatContext *s,
}
/* skip the number of decoded bytes (always equal to width * height) */
avio_skip(pb, 4);
if (chunk_size < 4)
return AVERROR_INVALIDDATA;
chunk_size -= 4;
ret= av_get_packet(pb, pkt, chunk_size);
if (ret < 0)
......
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