aboutsummaryrefslogtreecommitdiffstats
path: root/bignum.c
diff options
context:
space:
mode:
authorakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-07-08 13:00:11 +0000
committerakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-07-08 13:00:11 +0000
commit85855a22420bb6e2fd244f294c844106c992141a (patch)
treedca72e5d3c50edb3caa89bd1da9f58c9d7ab531e /bignum.c
parentffe55cdc1e2b18ff5f45b556043eecd672675ec6 (diff)
downloadruby-85855a22420bb6e2fd244f294c844106c992141a.tar.gz
* bignum.c (bary_mul_balance): Initialize a local variable to suppress
a warning. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@41831 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'bignum.c')
-rw-r--r--bignum.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/bignum.c b/bignum.c
index aeefa21e3a..eed2181955 100644
--- a/bignum.c
+++ b/bignum.c
@@ -1542,7 +1542,7 @@ static void
bary_mul_balance(BDIGIT *zds, size_t zl, BDIGIT *xds, size_t xl, BDIGIT *yds, size_t yl)
{
VALUE work = 0;
- BDIGIT *wds;
+ BDIGIT *wds = NULL;
size_t yl0 = yl;
size_t r, n;
size_t wl = 0;