Commit dc4a621e authored by Michael Niedermayer's avatar Michael Niedermayer

avcodec/vp3: Cleanup order of operations for current_run check

This shouldnt make a difference
Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent ca688de2
......@@ -470,7 +470,7 @@ static int unpack_superblocks(Vp3DecodeContext *s, GetBitContext *gb)
if (current_run == 34)
current_run += get_bits(gb, 12);
if (current_superblock + current_run > s->superblock_count) {
if (current_run > s->superblock_count - current_superblock) {
av_log(s->avctx, AV_LOG_ERROR,
"Invalid partially coded superblock run length\n");
return -1;
......
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