just check the filename

git-svn-id: file:///raid/svn-personal/tewi/trunk@73 8739d7e6-ffea-ec47-b151-bdff447c6205
This commit is contained in:
Nishi 2024-09-19 09:35:56 +00:00
parent 6e74ba707e
commit 47fc157fd2

View File

@ -487,10 +487,16 @@ void tw_server_pass(int sock, bool ssl, int port, SOCKADDR addr) {
#ifdef __MINGW32__
char* rpath = cm_strdup(path);
for(i = strlen(rpath) - 1; i >= 0; i--) {
if(rpath[i] != ':') {
if(rpath[i] == '/') {
int j;
for(j = i + 1; rpath[j] != 0; j++) {
if(rpath[j] == ':' || rpath[j] == '.') {
rpath[j] = 0;
break;
}
}
break;
}
rpath[i] = 0;
}
for(i = 0; i < sizeof(reserved_names) / sizeof(reserved_names[0]); i++) {
char* n = cm_strcat("/", reserved_names[i]);