commit 694cfff23f0fe534fa794a083c1484f14ccd0ab2 (tree)
parent 7b00ed362c69fc7da6eea503417d1f54b667a64b
Author: Andrew Kelley <superjoe30@gmail.com>
Date: Sun, 7 Feb 2016 03:49:25 -0700
fix a bogus call to bignum_normalize causing assertion failure
Diffstat:
1 file changed, 0 insertions(+), 1 deletion(-)
diff --git a/src/bignum.cpp b/src/bignum.cpp
@@ -156,7 +156,6 @@ bool bignum_mul(BigNum *dest, BigNum *op1, BigNum *op2) {
if (dest->kind == BigNumKindFloat) {
dest->data.x_float = op1->data.x_float * op2->data.x_float;
- bignum_normalize(dest);
return false;
}