* file.c (file_expand_path): applied a patch from Nobuhiro Tachino

in [ruby-dev:35948].  fix #491

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@19201 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
matz 2008-09-06 22:15:18 +00:00
parent 7ae76a9e6b
commit 0771b987a4
2 changed files with 6 additions and 2 deletions

View File

@ -1,3 +1,8 @@
Sun Sep 7 06:31:51 2008 Yukihiro Matsumoto <matz@ruby-lang.org>
* file.c (file_expand_path): applied a patch from Nobuhiro Tachino
in [ruby-dev:35948]. fix #491
Sun Sep 7 03:37:05 2008 Yukihiro Matsumoto <matz@ruby-lang.org>
* parse.y (f_block_optarg): allow default for block parameters as

3
file.c
View File

@ -2728,8 +2728,7 @@ file_expand_path(VALUE fname, VALUE dname, int abs_mode, VALUE result)
if (p > buf && p[-1] == '/')
--p;
else {
++buflen;
BUFCHECK(bdiff >= buflen);
BUFCHECK(bdiff + 1 >= buflen);
*p = '/';
}