summaryrefslogtreecommitdiff
path: root/ext/iconv/iconv.c
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2003-12-22 12:59:28 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2003-12-22 12:59:28 +0000
commit54524ed8f036f993c0a2acd4b671783daa774d86 (patch)
tree4537e10981cd95c2542e2128d7cc2beb1ff9b1ed /ext/iconv/iconv.c
parent65fed5dad3dbcbb60cc6ccffd4e43359ec29ffb4 (diff)
* ext/iconv/iconv.c (map_charset): always ensure code is a String.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@5252 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext/iconv/iconv.c')
-rw-r--r--ext/iconv/iconv.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/ext/iconv/iconv.c b/ext/iconv/iconv.c
index 1ef2a51b1b..4b1f4b5073 100644
--- a/ext/iconv/iconv.c
+++ b/ext/iconv/iconv.c
@@ -113,14 +113,10 @@ map_charset
VALUE key = rb_funcall2(val, rb_intern("downcase"), 0, 0);
StringValuePtr(key);
if (st_lookup(RHASH(charset_map)->tbl, key, &val)) {
- StringValuePtr(val);
*code = val;
}
}
- else {
- StringValuePtr(val);
- }
- return RSTRING(val)->ptr;
+ return StringValuePtr(*code);
}
static iconv_t