mirror of https://git.ffmpeg.org/ffmpeg.git
ffv1: fix out-of-bounds read
CC: libav-stable@libav.org
Bug-Id: CID 1047234
(cherry picked from commit 6abe7edabb
)
Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
This commit is contained in:
parent
3aba00b1b3
commit
3f09d4f6d4
|
@ -71,7 +71,7 @@ static void find_best_state(uint8_t best_state[256][256],
|
|||
best_len[k] = len;
|
||||
best_state[i][k] = j;
|
||||
}
|
||||
for (m = 0; m < 256; m++)
|
||||
for (m = 1; m < 256; m++)
|
||||
if (occ[m]) {
|
||||
newocc[one_state[m]] += occ[m] * p;
|
||||
newocc[256 - one_state[256 - m]] += occ[m] * (1 - p);
|
||||
|
|
Loading…
Reference in New Issue