Skip to content

Commit e946fd4

Browse files
committed
If base is 0, return early.
1 parent dc7685d commit e946fd4

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

ext/bcmath/libbcmath/src/raise.c

+7
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,13 @@ bool bc_raise(bc_num base, long exponent, bc_num *result, size_t scale) {
6767
rscale = MIN (base->n_scale * exponent, MAX(scale, base->n_scale));
6868
}
6969

70+
if (bc_is_zero(base)) {
71+
bc_free_num(result);
72+
*result = bc_copy_num(BCG(_zero_));
73+
/* If the exponent is negative, it divides by 0, so it is false. */
74+
return !is_neg;
75+
}
76+
7077
/* Set initial value of temp. */
7178
power = bc_copy_num(base);
7279
pwrscale = base->n_scale;

0 commit comments

Comments
 (0)