(svn r2190) - Fix: [1179424] '.. (Parent directory)' does not show up in the root-directory anymore; win32 only (mgasterix)

pull/155/head
darkvater 20 years ago
parent 53d30138b2
commit 5960857d9d

@ -1815,12 +1815,13 @@ char *FiosBrowseTo(const FiosItem *item)
case FIOS_TYPE_PARENT:
s = strrchr(path, '\\');
if (s != NULL) *s = '\0';
if (path[2] == '\0' ) strcat(path, "\\");
break;
case FIOS_TYPE_DIR:
s = strchr(item->name, '\\');
if (s != NULL) *s = '\0';
if (path[3]!= '\0' ) strcat(path, "\\");
if (path[3] != '\0' ) strcat(path, "\\");
strcat(path, item->name);
break;

Loading…
Cancel
Save