X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=src%2Fruntime%2Fwrap.c;h=29a79e1d279a59f93c8532c7ae234172ef743282;hb=1363121ddb1d2e722e2e41d1c93758551066797c;hp=39080d2b408b2c749fbc6c19712deb43573258cf;hpb=8c685e1fee08b4d1d9ef43b8d2784ac283c94096;p=sbcl.git diff --git a/src/runtime/wrap.c b/src/runtime/wrap.c index 39080d2..29a79e1 100644 --- a/src/runtime/wrap.c +++ b/src/runtime/wrap.c @@ -30,6 +30,7 @@ #include #include #include +#include #include #ifndef LISP_FEATURE_WIN32 #include @@ -238,13 +239,21 @@ stat_wrapper(const char *file_name, struct stat_wrapper *buf) #ifdef LISP_FEATURE_WIN32 /* - * Windows won't match the last component of a pathname if there is - * a trailing #\/ character. So we do silly things like this: + * Windows won't match the last component of a pathname if there + * is a trailing #\/ or #\\, except if it's :\ or :/ + * in which case it behaves the other way around. So we remove the + * trailing directory separator unless we are being passed just a + * drive name (e.g. "c:\\"). Some, but not all, of this + * strangeness is documented at Microsoft's support site (as of + * 2006-01-08, at + * ) */ char file_buf[MAX_PATH]; strcpy(file_buf, file_name); - int foo = strlen(file_name); - if (foo && (file_name[foo-1] == '/')) file_buf[foo-1] = 0; + int len = strlen(file_name); + if (len != 0 && (file_name[len-1] == '/' || file_name[len-1] == '\\') && + !(len == 3 && file_name[1] == ':' && isalpha(file_name[0]))) + file_buf[len-1] = '\0'; file_name = file_buf; #endif @@ -351,6 +360,7 @@ wrapped_environ() #ifdef LISP_FEATURE_WIN32 #define WIN32_LEAN_AND_MEAN #include +#include /* * faked-up implementation of select(). Right now just enough to get through * second genesis. @@ -377,7 +387,7 @@ int select(int top_fd, DWORD *read_set, DWORD *write_set, DWORD *except_set, tim if (read_set[i >> 5] & (1 << (i & 31))) { read_set[i >> 5] &= ~(1 << (i & 31)); fds[num_handles] = i; - handles[num_handles++] = _get_osfhandle(i); + handles[num_handles++] = (HANDLE) _get_osfhandle(i); } }