summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-05-26 08:25:44 +0000
committerusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-05-26 08:25:44 +0000
commit224efac3404e0a41993dc420c8249e985c74d083 (patch)
treed5126b86f6609d15d76fa601ee2ad1a849c5fc39
parentc2257734e34b0077719fa2b7ff62aaefc20614e9 (diff)
* file.c (file_expand_path): add more space for '/'.
* file.c (file_expand_path): should reset address of p after calling rb_str_resize(). [ruby-dev:34800] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@16613 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog7
-rw-r--r--file.c7
2 files changed, 13 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index a2c338ce8c..704ce57498 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+Mon May 26 17:23:49 2008 NAKAMURA Usaku <usa@ruby-lang.org>
+
+ * file.c (file_expand_path): add more space for '/'.
+
+ * file.c (file_expand_path): should reset address of p after calling
+ rb_str_resize(). [ruby-dev:34800]
+
Mon May 26 16:49:55 2008 Yukihiro Matsumoto <matz@ruby-lang.org>
* misc/ruby-mode.el (ruby-mode): use run-hooks if run-mode-hook is
diff --git a/file.c b/file.c
index d5f39c7979..86e51c871a 100644
--- a/file.c
+++ b/file.c
@@ -2730,8 +2730,10 @@ file_expand_path(VALUE fname, VALUE dname, VALUE result)
}
if (p > buf && p[-1] == '/')
--p;
- else
+ else {
+ BUFCHECK(bdiff >= ++buflen);
*p = '/';
+ }
p[1] = 0;
root = skipprefix(buf);
@@ -2864,6 +2866,7 @@ file_expand_path(VALUE fname, VALUE dname, VALUE result)
#endif
HANDLE h = FindFirstFile(b, &wfd);
if (h != INVALID_HANDLE_VALUE) {
+ long bdiff;
FindClose(h);
p = strrdirsep(buf);
len = strlen(wfd.cFileName);
@@ -2875,7 +2878,9 @@ file_expand_path(VALUE fname, VALUE dname, VALUE result)
#endif
if (!p) p = buf;
buflen = ++p - buf + len;
+ bdiff = p - buf;
rb_str_resize(result, buflen);
+ p = RSTRING_PTR(result) + bdiff;
memcpy(p, wfd.cFileName, len + 1);
}
}