* marshal.c (r_object0): fix a GC problem for reading a bignum on
IA64 with gcc 3.3.5 (Debian 1:3.3.5-13). git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9685 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
51f4d6645b
commit
07611afdc2
@ -1,3 +1,8 @@
|
|||||||
|
Wed Dec 14 12:01:26 2005 Tanaka Akira <akr@m17n.org>
|
||||||
|
|
||||||
|
* marshal.c (r_object0): fix a GC problem for reading a bignum on
|
||||||
|
IA64 with gcc 3.3.5 (Debian 1:3.3.5-13).
|
||||||
|
|
||||||
Tue Dec 13 12:23:47 2005 Tanaka Akira <akr@m17n.org>
|
Tue Dec 13 12:23:47 2005 Tanaka Akira <akr@m17n.org>
|
||||||
|
|
||||||
* re.c (rb_reg_regcomp): fix a GC problem on x86_64 with
|
* re.c (rb_reg_regcomp): fix a GC problem on x86_64 with
|
||||||
|
@ -1038,7 +1038,7 @@ r_object0(struct load_arg *arg, VALUE proc, int *ivp, VALUE extmod)
|
|||||||
{
|
{
|
||||||
long len;
|
long len;
|
||||||
BDIGIT *digits;
|
BDIGIT *digits;
|
||||||
VALUE data;
|
volatile VALUE data;
|
||||||
|
|
||||||
NEWOBJ(big, struct RBignum);
|
NEWOBJ(big, struct RBignum);
|
||||||
OBJSETUP(big, rb_cBignum, T_BIGNUM);
|
OBJSETUP(big, rb_cBignum, T_BIGNUM);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user