aboutsummaryrefslogtreecommitdiffstats
path: root/dir.c
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-06-30 14:11:56 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-06-30 14:11:56 +0000
commit2c9596c52122887c7d6dd339ed28922d497fefb8 (patch)
tree3715717e1516f08d222326233db069e45c3cfdb7 /dir.c
parent26ef134e3fa4b027591afd39ae715a0f35b32ebb (diff)
downloadruby-2c9596c52122887c7d6dd339ed28922d497fefb8.tar.gz
ensure paths NUL-terminated
* dir.c (check_dirname): ensure path name NUL-terminated for SHARABLE_MIDDLE_SUBSTRING. * io.c (rb_sysopen): ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@51073 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'dir.c')
-rw-r--r--dir.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/dir.c b/dir.c
index e271503dce..ee3032d69f 100644
--- a/dir.c
+++ b/dir.c
@@ -1019,6 +1019,7 @@ check_dirname(VALUE dir)
pend = rb_enc_path_end(rb_enc_path_skip_prefix(path, pend, enc), pend, enc);
if (pend - path < len) {
d = rb_str_subseq(d, 0, pend - path);
+ StringValueCStr(d);
}
return rb_str_encode_ospath(d);
}