1
0
Fork 0
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/branches/ruby_1_8@9617 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
eban 2005-11-26 11:01:01 +00:00
parent e40a5e82ec
commit c213ea3a76
2 changed files with 5 additions and 0 deletions

View file

@ -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.
Thu Nov 24 21:05:58 2005 NAKAMURA Usaku <usa@ruby-lang.org>
* configure.in (AC_CHECK_FUNCS): need to check link().

1
dln.c
View file

@ -1693,6 +1693,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;