File tree Expand file tree Collapse file tree 3 files changed +7
-2
lines changed Expand file tree Collapse file tree 3 files changed +7
-2
lines changed Original file line number Diff line number Diff line change
1
+ Sun Jun 15 22:19:33 2008 Yukihiro Matsumoto <matz@ruby-lang.org>
2
+
3
+ * sprintf.c (rb_f_sprintf): should protect temporary string from
4
+ GC. [ruby-dev:34480]
5
+
1
6
Sun Jun 15 22:17:35 2008 Yukihiro Matsumoto <matz@ruby-lang.org>
2
7
3
8
* regex.c (re_search): string might be NULL. [ruby-core:16478]
Original file line number Diff line number Diff line change @@ -485,7 +485,7 @@ rb_f_sprintf(argc, argv)
485
485
long v = 0 ;
486
486
int base , bignum = 0 ;
487
487
int len , pos ;
488
- VALUE tmp ;
488
+ volatile VALUE tmp ;
489
489
volatile VALUE tmp1 ;
490
490
491
491
switch (* p ) {
Original file line number Diff line number Diff line change 2
2
#define RUBY_RELEASE_DATE "2008-06-15"
3
3
#define RUBY_VERSION_CODE 185
4
4
#define RUBY_RELEASE_CODE 20080615
5
- #define RUBY_PATCHLEVEL 197
5
+ #define RUBY_PATCHLEVEL 198
6
6
7
7
#define RUBY_VERSION_MAJOR 1
8
8
#define RUBY_VERSION_MINOR 8
You can’t perform that action at this time.
0 commit comments