You've already forked FFmpeg
							
							
				mirror of
				https://github.com/FFmpeg/FFmpeg.git
				synced 2025-10-30 23:18:11 +02:00 
			
		
		
		
	avutil/rational: Check that av_reduce() returns values within the requested max
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
		| @@ -69,6 +69,7 @@ int av_reduce(int *dst_num, int *dst_den, | ||||
|         den = next_den; | ||||
|     } | ||||
|     av_assert2(av_gcd(a1.num, a1.den) <= 1U); | ||||
|     av_assert2(a1.num <= max && a1.den <= max); | ||||
|  | ||||
|     *dst_num = sign ? -a1.num : a1.num; | ||||
|     *dst_den = a1.den; | ||||
|   | ||||
		Reference in New Issue
	
	Block a user