summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog6
-rw-r--r--bignum.c8
2 files changed, 12 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index aed11722bf..8b5160346d 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+Sun Sep 1 22:37:51 2013 Tanaka Akira <akr@fsij.org>
+
+ * bignum.c (bary_mul_gmp): Use mpz_init and mpz_clear instead of
+ mpz_inits and mpz_clears.
+ Older GMP don't have them.
+
Sun Sep 1 21:17:54 2013 Tanaka Akira <akr@fsij.org>
* test/net/http/test_http.rb (test_bind_to_local_port): Choose an open
diff --git a/bignum.c b/bignum.c
index 971678b3d3..7a6e1f2934 100644
--- a/bignum.c
+++ b/bignum.c
@@ -2262,7 +2262,9 @@ bary_mul_gmp(BDIGIT *zds, size_t zn, const BDIGIT *xds, size_t xn, const BDIGIT
assert(xn + yn <= zn);
- mpz_inits(x, y, z, 0);
+ mpz_init(x);
+ mpz_init(y);
+ mpz_init(z);
mpz_import(x, xn, -1, sizeof(BDIGIT), 0, nails, xds);
if (xds == yds && xn == yn) {
mpz_mul(z, x, x);
@@ -2273,7 +2275,9 @@ bary_mul_gmp(BDIGIT *zds, size_t zn, const BDIGIT *xds, size_t xn, const BDIGIT
}
mpz_export (zds, &count, -1, sizeof(BDIGIT), 0, nails, z);
BDIGITS_ZERO(zds+count, zn-count);
- mpz_clears(x, y, z, 0);
+ mpz_clear(x);
+ mpz_clear(y);
+ mpz_clear(z);
}
VALUE