r=mkaply, a=blizzard
Put dougt fix into OS/2
This commit is contained in:
mkaply%us.ibm.com 2001-04-26 18:40:12 +00:00
Родитель 4e70416b21
Коммит 1f070fb1f6
1 изменённых файлов: 1 добавлений и 2 удалений

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

@ -795,8 +795,7 @@ NS_IMETHODIMP
nsLocalFile::AppendRelativePath(const char *node)
{
// Cannot start with a / or have .. or have / anywhere
if (!node || (*node == '/') || (strstr(node, "..") != nsnull) ||
(strchr(node, '/') != nsnull))
if (!node || strchr(node, '/'))
{
return NS_ERROR_FILE_UNRECOGNIZED_PATH;
}