mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* dln.c (conv_to_posix_path): should initialize posix.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9617 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
8245833fb4
commit
ceefeadd4f
2 changed files with 5 additions and 0 deletions
|
@ -1,3 +1,7 @@
|
|||
Sat Nov 26 19:57:45 2005 WATANABE Hirofumi <eban@ruby-lang.org>
|
||||
|
||||
* dln.c (conv_to_posix_path): should initialize posix.
|
||||
|
||||
Fri Nov 25 14:34:09 2005 Yukihiro Matsumoto <matz@ruby-lang.org>
|
||||
|
||||
* range.c (range_max): treat end exclusion without iteration if
|
||||
|
|
1
dln.c
1
dln.c
|
@ -1645,6 +1645,7 @@ conv_to_posix_path(win32, posix, len)
|
|||
char *p = win32;
|
||||
char *dst = posix;
|
||||
|
||||
posix[0] = '\0';
|
||||
for (p = win32; *p; p++)
|
||||
if (*p == ';') {
|
||||
*p = 0;
|
||||
|
|
Loading…
Reference in a new issue