Skip to content

Commit ac3ac78

Browse files
committed
merge revision(s) r48222: [Backport ruby#10464] [Backport ruby#10465]
* bignum.c (bary_mul_balance_with_mulfunc): Fix free work area location. [ruby-dev:48723] [Bug ruby#10464] [ruby-core:66044] [Bug ruby#10465] Reported by Kohji Nishihama. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_2_1@48272 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
1 parent 35168b8 commit ac3ac78

File tree

3 files changed

+13
-5
lines changed

3 files changed

+13
-5
lines changed

ChangeLog

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
Wed Nov 5 00:01:04 2014 Tanaka Akira <[email protected]>
2+
3+
* bignum.c (bary_mul_balance_with_mulfunc): Fix free work area
4+
location.
5+
[ruby-dev:48723] [Bug #10464]
6+
[ruby-core:66044] [Bug #10465]
7+
Reported by Kohji Nishihama.
8+
19
Tue Oct 28 22:30:21 2014 NARUSE, Yui <[email protected]>
210

311
* configure.in: remove apple-gcc4.2 from CC candidates.

bignum.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1650,7 +1650,7 @@ bary_mul_balance_with_mulfunc(BDIGIT *zds, size_t zn, const BDIGIT *xds, size_t
16501650
}
16511651
tds = zds + n;
16521652
MEMCPY(wds, zds + n, BDIGIT, xn);
1653-
mulfunc(tds, tn, xds, xn, yds + n, r, wds-xn, wn-xn);
1653+
mulfunc(tds, tn, xds, xn, yds + n, r, wds+xn, wn-xn);
16541654
bary_add(zds + n, tn,
16551655
zds + n, tn,
16561656
wds, xn);

version.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
#define RUBY_VERSION "2.1.5"
2-
#define RUBY_RELEASE_DATE "2014-10-28"
3-
#define RUBY_PATCHLEVEL 267
2+
#define RUBY_RELEASE_DATE "2014-11-05"
3+
#define RUBY_PATCHLEVEL 268
44

55
#define RUBY_RELEASE_YEAR 2014
6-
#define RUBY_RELEASE_MONTH 10
7-
#define RUBY_RELEASE_DAY 28
6+
#define RUBY_RELEASE_MONTH 11
7+
#define RUBY_RELEASE_DAY 5
88

99
#include "ruby/version.h"
1010

0 commit comments

Comments
 (0)