From a436212282330a6b132e0a4174178a4ca253dea0 Mon Sep 17 00:00:00 2001 From: usa Date: Fri, 31 Jul 2009 04:16:01 +0000 Subject: * transcode.c (str_encode_bang): C99ism. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@24335 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- transcode.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'transcode.c') diff --git a/transcode.c b/transcode.c index 9e4c8392c6..4182893928 100644 --- a/transcode.c +++ b/transcode.c @@ -2644,12 +2644,15 @@ str_encode_associate(VALUE str, int encidx) static VALUE str_encode_bang(int argc, VALUE *argv, VALUE str) { + VALUE newstr; + int encidx; + if (OBJ_FROZEN(str)) { /* in future, may use str_frozen_check from string.c, but that's currently static */ rb_raise(rb_eRuntimeError, "string frozen"); } - VALUE newstr = str; - int encidx = str_transcode(argc, argv, &newstr); + newstr = str; + encidx = str_transcode(argc, argv, &newstr); if (encidx < 0) return str; rb_str_shared_replace(str, newstr); -- cgit v1.2.3