Commit 0c1353ae authored by Michael Niedermayer's avatar Michael Niedermayer

Merge commit 'b4d372e0'

* commit 'b4d372e0':
  rv10: Forward error from rv10_decode_packet
Merged-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parents 17a5dbac b4d372e0
......@@ -730,7 +730,10 @@ static int rv10_decode_frame(AVCodecContext *avctx,
offset + FFMAX(size, size2) > buf_size)
return AVERROR_INVALIDDATA;
if (rv10_decode_packet(avctx, buf + offset, size, size2) > 8 * size)
if ((ret = rv10_decode_packet(avctx, buf + offset, size, size2)) < 0)
return ret;
if (ret > 8 * size)
i++;
}
......
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