mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-06-09 14:07:31 +02:00
avcodec/mss3: Change types in rac_get_model_sym() to match the types they are initialized from
Fixes integer overflow Fixes: 1372/clusterfuzz-testcase-minimized-5712192982745088 Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/targets/ffmpeg Signed-off-by: Michael Niedermayer <michael@niedermayer.cc> (cherry picked from commit 2ef0f392711445e173a56b2c073dedb021ae3783) Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
b9289fad4b
commit
afbe970534
@ -356,8 +356,9 @@ static int rac_get_model2_sym(RangeCoder *c, Model2 *m)
|
|||||||
|
|
||||||
static int rac_get_model_sym(RangeCoder *c, Model *m)
|
static int rac_get_model_sym(RangeCoder *c, Model *m)
|
||||||
{
|
{
|
||||||
int prob, prob2, helper, val;
|
int val;
|
||||||
int end, end2;
|
int end, end2;
|
||||||
|
unsigned prob, prob2, helper;
|
||||||
|
|
||||||
prob = 0;
|
prob = 0;
|
||||||
prob2 = c->range;
|
prob2 = c->range;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user