nsLocalUri2Path fix. If the folder part of the uri is "" don't try to append it to the local path as that adds an unwanted '\' on windows.

This commit is contained in:
mscott%netscape.com 1999-04-28 06:58:59 +00:00
Родитель 24f1fa110d
Коммит 8bc671eaee
1 изменённых файлов: 2 добавлений и 1 удалений

Просмотреть файл

@ -195,7 +195,8 @@ nsLocalURI2Path(const char* rootURI, const char* uriStr,
pathResult +=path;
#endif
pathResult += folder;
if (folder != "")
pathResult += folder;
return NS_OK;
}