Commit 465f3705 authored by Michael Niedermayer's avatar Michael Niedermayer

avformat/smacker: Fix number suffix

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent fc3cdb00
......@@ -321,7 +321,7 @@ static int smacker_read_packet(AVFormatContext *s, AVPacket *pkt)
int err;
size = avio_rl32(s->pb) - 4;
if (!size || size + 4L > frame_size) {
if (!size || size + 4LL > frame_size) {
av_log(s, AV_LOG_ERROR, "Invalid audio part size\n");
return AVERROR_INVALIDDATA;
}
......
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