aboutsummaryrefslogtreecommitdiffstats
path: root/string.c
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-12-04 07:48:22 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-12-04 07:48:22 +0000
commit73bfa994dca546d8dac97372100261c83a8da9b7 (patch)
tree4812f00c869bd0581479fc8c8e5cbe8bfa13a87f /string.c
parent3f856ab0ffaa24ca13feb901c3a961533de3d521 (diff)
downloadruby-73bfa994dca546d8dac97372100261c83a8da9b7.tar.gz
string.c: should not taint fstring
* string.c (rb_obj_as_string): fstring should not be infected. re-apply r52872 and fix a typo. TODO: other frozen strings also may not be. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@52882 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'string.c')
-rw-r--r--string.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/string.c b/string.c
index d1a051b6dd..6d283dd145 100644
--- a/string.c
+++ b/string.c
@@ -1247,7 +1247,9 @@ rb_obj_as_string(VALUE obj)
str = rb_funcall(obj, idTo_s, 0);
if (!RB_TYPE_P(str, T_STRING))
return rb_any_to_s(obj);
- OBJ_INFECT(str, obj);
+ if (!FL_TEST_RAW(str, RSTRING_FSTR) && FL_ABLE(obj))
+ /* fstring must not be tainted, at least */
+ OBJ_INFECT_RAW(str, obj);
return str;
}