diff options
author | Michael Niedermayer <michael@niedermayer.cc> | 2015-12-09 17:39:38 +0100 |
---|---|---|
committer | Michael Niedermayer <michael@niedermayer.cc> | 2015-12-09 17:39:38 +0100 |
commit | bc8b1e694cc395fdf5e2917377ef11263c937d85 (patch) | |
tree | da5839ae3df42636a3def24f4d75389c01a798ee | |
parent | 8cfa912e250da83675f68ce5e02faf325c18d462 (diff) | |
download | ffmpeg-bc8b1e694cc395fdf5e2917377ef11263c937d85.tar.gz |
avutil/mathematics: Fix division by 0
Fixes: CID1341571
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
-rw-r--r-- | libavutil/mathematics.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavutil/mathematics.c b/libavutil/mathematics.c index c12c73e6e6..20ff37f5e9 100644 --- a/libavutil/mathematics.c +++ b/libavutil/mathematics.c @@ -85,7 +85,7 @@ int64_t av_rescale_rnd(int64_t a, int64_t b, int64_t c, enum AVRounding rnd) else { int64_t ad = a / c; int64_t a2 = (a % c * b + r) / c; - if (ad >= INT32_MAX && ad > (INT64_MAX - a2) / b) + if (ad >= INT32_MAX && b && ad > (INT64_MAX - a2) / b) return INT64_MIN; return ad * b + a2; } |