mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* 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
2 changed files with 6 additions and 1 deletions
|
@ -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>
|
||||
|
||||
* 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;
|
||||
BDIGIT *digits;
|
||||
VALUE data;
|
||||
volatile VALUE data;
|
||||
|
||||
NEWOBJ(big, struct RBignum);
|
||||
OBJSETUP(big, rb_cBignum, T_BIGNUM);
|
||||
|
|
Loading…
Reference in a new issue