mirror of
https://github.com/ruby/ruby.git
synced 2025-09-15 16:44:01 +02:00
* io.c (rb_f_backquote): fix a GC problem on
IA64 with gcc 4.0.3 20051216 (prerelease) -O3. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@9718 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
07844461de
commit
aa9cab871c
2 changed files with 7 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
Tue Dec 20 01:46:48 2005 Tanaka Akira <akr@m17n.org>
|
||||||
|
|
||||||
|
* io.c (rb_f_backquote): fix a GC problem on
|
||||||
|
IA64 with gcc 4.0.3 20051216 (prerelease) -O3.
|
||||||
|
|
||||||
Mon Dec 19 23:32:39 2005 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
Mon Dec 19 23:32:39 2005 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||||
|
|
||||||
* parse.y (rb_symname_p): fixed wrong validation. [ruby-dev:28047]
|
* parse.y (rb_symname_p): fixed wrong validation. [ruby-dev:28047]
|
||||||
|
|
3
io.c
3
io.c
|
@ -4513,7 +4513,8 @@ static VALUE
|
||||||
rb_f_backquote(obj, str)
|
rb_f_backquote(obj, str)
|
||||||
VALUE obj, str;
|
VALUE obj, str;
|
||||||
{
|
{
|
||||||
VALUE port, result;
|
volatile VALUE port;
|
||||||
|
VALUE result;
|
||||||
OpenFile *fptr;
|
OpenFile *fptr;
|
||||||
|
|
||||||
SafeStringValue(str);
|
SafeStringValue(str);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue