diff options
-rw-r--r-- | win32.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1820,7 +1820,7 @@ char *FiosBrowseTo(const FiosItem *item) case FIOS_TYPE_DIR: s = strchr(item->name, '\\'); if (s != NULL) *s = '\0'; - strcat(path, "\\"); + if (path[3]!= '\0' ) strcat(path, "\\"); strcat(path, item->name); break; |