mirror of
				https://github.com/nyanmisaka/ffmpeg-rockchip.git
				synced 2025-10-31 12:36:41 +08: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:
		| @@ -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; | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 Michael Niedermayer
					Michael Niedermayer