fix nsILocalFile relative descs calculation of relative path, r=sspitzer, sr=mscott required for 137006

This commit is contained in:
bienvenu%nventure.com 2003-12-19 18:13:42 +00:00
Родитель f84c038aa3
Коммит c730b9ee45
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -190,7 +190,7 @@ nsLocalFile::GetRelativeDescriptor(nsILocalFile *fromFile, nsACString& _retval)
return NS_ERROR_FAILURE;
for (nodeIndex = 0; nodeIndex < thisNodeCnt && nodeIndex < fromNodeCnt; nodeIndex++) {
if (!nsCRT::strcmp(thisNodes[nodeIndex], fromNodes[nodeIndex]))
if (nsCRT::strcmp(thisNodes[nodeIndex], fromNodes[nodeIndex]))
break;
}