From 58bb9f79366bb16ca30c4c26c71e3499db745663 Mon Sep 17 00:00:00 2001 From: nobu Date: Thu, 4 Aug 2016 02:54:32 +0000 Subject: hash.c: set encoding * hash.c (env_assoc): the encoding of the value should be the locale, as well as other methods, [], fetch, values, etc. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@55811 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- hash.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'hash.c') diff --git a/hash.c b/hash.c index 963d9aed3f..d6bfc8a613 100644 --- a/hash.c +++ b/hash.c @@ -3899,7 +3899,7 @@ env_assoc(VALUE env, VALUE key) s = env_name(key); e = getenv(s); - if (e) return rb_assoc_new(key, rb_tainted_str_new2(e)); + if (e) return rb_assoc_new(key, env_str_new2(e)); return Qnil; } -- cgit v1.2.3