mirror of
https://github.com/xenia-project/FFmpeg.git
synced 2024-11-24 03:59:43 +00:00
avcodec/mss3: Fix runtime error: signed integer overflow: -2146318336 - 2139696256 cannot be represented in type 'int'
Fix is similar to rac_get_model_sym() Fixes: 1483/clusterfuzz-testcase-minimized-6386507814273024 Fixes: 1485/clusterfuzz-testcase-minimized-6639880215986176 Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/targets/ffmpeg Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
2752410c47
commit
d05bdba242
@ -389,9 +389,10 @@ static int rac_get_model_sym(RangeCoder *c, Model *m)
|
||||
|
||||
static int rac_get_model256_sym(RangeCoder *c, Model256 *m)
|
||||
{
|
||||
int prob, prob2, helper, val;
|
||||
int val;
|
||||
int start, end;
|
||||
int ssym;
|
||||
unsigned prob, prob2, helper;
|
||||
|
||||
prob2 = c->range;
|
||||
c->range >>= MODEL_SCALE;
|
||||
|
Loading…
Reference in New Issue
Block a user