* hash.c (env_str_new): use rb_locale_str_new instead of
  rb_tainted_str_new. rb_locale_str_new set string locale
  encoding and tainted.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@24056 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
naruse 2009-07-12 15:04:33 +00:00
Родитель 8d9896c3b9
Коммит 0dc7839b7f
2 изменённых файлов: 8 добавлений и 2 удалений

Просмотреть файл

@ -1,3 +1,9 @@
Sun Jul 12 23:51:39 2009 NARUSE, Yui <naruse@ruby-lang.org>
* hash.c (env_str_new): use rb_locale_str_new instead of
rb_tainted_str_new. rb_locale_str_new set string locale
encoding and tainted.
Sun Jul 12 23:56:40 2009 Tadayoshi Funaba <tadf@dotrb.org>
* complex.c: added some shortcuts.
@ -41,7 +47,7 @@ Sat Jul 11 07:11:59 2009 Nobuyoshi Nakada <nobu@ruby-lang.org>
Sat Jul 11 02:37:37 2009 Nobuyoshi Nakada <nobu@ruby-lang.org>
* random.c (limited_rand): expands to long before shift so tha
* random.c (limited_rand): expands to long before shift so that
the result does not overflow.
Sat Jul 11 00:16:27 2009 Nobuyoshi Nakada <nobu@ruby-lang.org>

2
hash.c
Просмотреть файл

@ -1857,7 +1857,7 @@ extern char **environ;
static VALUE
env_str_new(const char *ptr, long len)
{
VALUE str = rb_tainted_str_new(ptr, len);
VALUE str = rb_locale_str_new(ptr, len);
rb_obj_freeze(str);
return str;