Skip to content

Commit 9372cdb

Browse files
committed
* bignum.c (bigmul1_karatsuba): suppress a warning.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27492 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
1 parent 8ebadc6 commit 9372cdb

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

bignum.c

+1
Original file line numberDiff line numberDiff line change
@@ -2125,6 +2125,7 @@ bigmul1_karatsuba(VALUE x, VALUE y)
21252125
}
21262126
else {
21272127
t2 = Qundef;
2128+
t2n = 0;
21282129

21292130
/* copy 0 into low bytes of the result (z0) */
21302131
for (i = 0; i < 2 * n; i++) zds[i] = 0;

version.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#define RUBY_VERSION "1.9.2"
2-
#define RUBY_RELEASE_DATE "2010-04-25"
2+
#define RUBY_RELEASE_DATE "2010-04-26"
33
#define RUBY_PATCHLEVEL -1
44
#define RUBY_BRANCH_NAME "trunk"
55

@@ -8,7 +8,7 @@
88
#define RUBY_VERSION_TEENY 1
99
#define RUBY_RELEASE_YEAR 2010
1010
#define RUBY_RELEASE_MONTH 4
11-
#define RUBY_RELEASE_DAY 25
11+
#define RUBY_RELEASE_DAY 26
1212

1313
#include "ruby/version.h"
1414

0 commit comments

Comments
 (0)