summaryrefslogtreecommitdiff
path: root/libavutil/mathematics.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michael@niedermayer.cc>2015-12-09 17:39:38 +0100
committerMichael Niedermayer <michael@niedermayer.cc>2015-12-09 17:39:38 +0100
commitbc8b1e694cc395fdf5e2917377ef11263c937d85 (patch)
treeda5839ae3df42636a3def24f4d75389c01a798ee /libavutil/mathematics.c
parent8cfa912e250da83675f68ce5e02faf325c18d462 (diff)
avutil/mathematics: Fix division by 0
Fixes: CID1341571 Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'libavutil/mathematics.c')
-rw-r--r--libavutil/mathematics.c2
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;
}