Bug 338680: check isFile before fileSize, since the Mac fileSize getter throws for non-files, r=mconnor

This commit is contained in:
gavin%gavinsharp.com 2006-05-23 14:18:53 +00:00
Родитель 15697f52d7
Коммит 7496b76d03
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -1802,7 +1802,7 @@ SearchService.prototype = {
var file = files.nextFile;
// Ignore hidden and empty files, and directories
if (file.fileSize == 0 || !file.isFile() || file.isHidden())
if (!file.isFile() || file.fileSize == 0 || file.isHidden())
continue;
var fileURL = ios.newFileURI(file).QueryInterface(Ci.nsIURL);