mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
merge revision(s) 17719:
* string.c (rb_str_format_m): make tmp volatile to avoid possible GC problem. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8_6@18112 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
98d848a90b
commit
a571edd80a
3 changed files with 7 additions and 2 deletions
|
|
@ -1,3 +1,8 @@
|
|||
Thu Jul 17 21:31:46 2008 Tanaka Akira <akr@fsij.org>
|
||||
|
||||
* string.c (rb_str_format_m): make tmp volatile to avoid possible GC
|
||||
problem.
|
||||
|
||||
Thu Jul 17 21:29:34 2008 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||
|
||||
* lib/optparse.rb (OptionParser#environment): requires shellwords.
|
||||
|
|
|
|||
2
string.c
2
string.c
|
|
@ -455,7 +455,7 @@ static VALUE
|
|||
rb_str_format_m(str, arg)
|
||||
VALUE str, arg;
|
||||
{
|
||||
VALUE tmp = rb_check_array_type(arg);
|
||||
volatile VALUE tmp = rb_check_array_type(arg);
|
||||
|
||||
if (!NIL_P(tmp)) {
|
||||
return rb_str_format(RARRAY_LEN(tmp), RARRAY_PTR(tmp), str);
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
#define RUBY_RELEASE_DATE "2008-07-17"
|
||||
#define RUBY_VERSION_CODE 186
|
||||
#define RUBY_RELEASE_CODE 20080717
|
||||
#define RUBY_PATCHLEVEL 277
|
||||
#define RUBY_PATCHLEVEL 278
|
||||
|
||||
#define RUBY_VERSION_MAJOR 1
|
||||
#define RUBY_VERSION_MINOR 8
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue