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 21:57:19 2008 Yukihiro Matsumoto <matz@ruby-lang.org>
2
+
3
+ * re.c (rb_reg_quote): should always copy the quoting string.
4
+ [ruby-core:16235]
5
+
1
6
Sun Jun 15 21:26:54 2008 Yukihiro Matsumoto <matz@ruby-lang.org>
2
7
3
8
* lib/net/pop.rb (Net::POP3::do_finish): clear @n_mails and
Original file line number Diff line number Diff line change @@ -1754,7 +1754,7 @@ rb_reg_quote(str)
1754
1754
goto meta_found ;
1755
1755
}
1756
1756
}
1757
- return str ;
1757
+ return rb_str_new3 ( str ) ;
1758
1758
1759
1759
meta_found :
1760
1760
tmp = rb_str_new (0 , RSTRING (str )-> len * 2 );
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 191
5
+ #define RUBY_PATCHLEVEL 192
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