Bug 616256 - Don't stat files on directory enumeration on windows r=bsmedberg+dougt a=2.0

This commit is contained in:
Taras Glek 2010-12-07 11:47:24 -08:00
Родитель 921be72a77
Коммит f18477692a
1 изменённых файлов: 0 добавлений и 8 удалений

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

@ -682,14 +682,6 @@ class nsDirEnumerator : public nsISimpleEnumerator,
if (NS_FAILED(rv))
return rv;
// make sure the thing exists. If it does, try the next one.
PRBool exists;
rv = file->Exists(&exists);
if (NS_FAILED(rv) || !exists)
{
return HasMoreElements(result);
}
mNext = do_QueryInterface(file);
}
*result = mNext != nsnull;