mirror of https://git.ffmpeg.org/ffmpeg.git
proresdec: Properly make sure an index doesn't run past the limit
If idx equaled num_coeffs - 1 on entry to the loop, the previous check failed to break out of the loop. Reported-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind CC: libav-stable@libav.org Signed-off-by: Martin Storsjö <martin@martin.st>
This commit is contained in:
parent
e90a6846c2
commit
ac9d159015
|
@ -496,7 +496,7 @@ static void unpack_alpha(GetBitContext *gb, uint16_t *dst, int num_coeffs,
|
|||
dst[idx++] = alpha_val >> 6;
|
||||
else
|
||||
dst[idx++] = (alpha_val << 2) | (alpha_val >> 6);
|
||||
if (idx == num_coeffs - 1)
|
||||
if (idx >= num_coeffs - 1)
|
||||
break;
|
||||
} while (get_bits1(gb));
|
||||
val = get_bits(gb, 4);
|
||||
|
|
Loading…
Reference in New Issue