aboutsummaryrefslogtreecommitdiffstats
path: root/string.c
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-12-22 01:03:17 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-12-22 01:03:17 +0000
commit113e49ed00f4cb73c1a5170150e1db4cab27c544 (patch)
tree6616db836fa074425156cffc1a2612d64e314f2f /string.c
parent62267fce470a695efea49676f610ee0906712e6f (diff)
downloadruby-113e49ed00f4cb73c1a5170150e1db4cab27c544.tar.gz
encoding.c: rb_enc_find_index2
* string.c (str_undump): use rb_enc_find_index2 to find encoding by unterminated string. check the format before encoding name. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@61396 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'string.c')
-rw-r--r--string.c17
1 files changed, 4 insertions, 13 deletions
diff --git a/string.c b/string.c
index e6db6a502c..30d57b5df4 100644
--- a/string.c
+++ b/string.c
@@ -6263,7 +6263,6 @@ str_undump(VALUE str)
}
else {
const char *encname;
- char *buf;
int encidx;
ptrdiff_t size;
@@ -6280,22 +6279,14 @@ str_undump(VALUE str)
s = memchr(s, '"', s_end-s);
size = s - encname;
if (!s) goto invalid_format;
- if (size > 100) {
- rb_raise(rb_eRuntimeError, "dumped string has unknown encoding name");
- }
- buf = ALLOC_N(char, size+1);
- memcpy(buf, encname, size);
- buf[size] = '\0';
- encidx = rb_enc_find_index(buf);
- xfree(buf);
+ if (s_end - s != 2) goto invalid_format;
+ if (s[0] != '"' || s[1] != ')') goto invalid_format;
+
+ encidx = rb_enc_find_index2(encname, (long)size);
if (encidx < 0) {
rb_raise(rb_eRuntimeError, "dumped string has unknown encoding name");
}
rb_enc_associate_index(undumped, encidx);
-
- if (s_end - s != 2 ||
- s[0] != '"' ||
- s[1] != ')') goto invalid_format;
}
break;
}