Commit 6abe7eda authored by Vittorio Giovara's avatar Vittorio Giovara

ffv1: fix out-of-bounds read

CC: libav-stable@libav.org
Bug-Id: CID 1047234
parent 5aa710f4
......@@ -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);
......
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