summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoreban <eban@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2005-11-26 11:01:01 +0000
committereban <eban@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2005-11-26 11:01:01 +0000
commitae1dc9c2d6b4cbe4d8b43b9ac205f5884249975d (patch)
tree56702976702a7d851573e91247c02267a4c4bb78
parent3fbdb55f1114ff47c3d41aa41c8e8fa18ee27605 (diff)
downloadruby-ae1dc9c2d6b4cbe4d8b43b9ac205f5884249975d.tar.gz
ruby-ae1dc9c2d6b4cbe4d8b43b9ac205f5884249975d.tar.xz
ruby-ae1dc9c2d6b4cbe4d8b43b9ac205f5884249975d.zip
* dln.c (conv_to_posix_path): should initialize posix.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8@9617 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog4
-rw-r--r--dln.c1
2 files changed, 5 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index d5186f956..bf83e6bef 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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().
diff --git a/dln.c b/dln.c
index 0993a8416..65ed4507a 100644
--- a/dln.c
+++ b/dln.c
@@ -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;