Merge branch 'KDE/4.10'

This commit is contained in:
Josef Weidendorfer 2013-05-21 18:56:38 +02:00
commit d3470ef4fb

View file

@ -243,7 +243,8 @@ int ScanDir::scan(ScanItem* si, ScanItemList& list, int data)
QStringList::ConstIterator it;
for (it = fileList.constBegin(); it != fileList.constEnd(); ++it ) {
KDE::lstat( si->absPath + QLatin1Char('/') + (*it), &buff );
if (KDE::lstat( si->absPath + QLatin1Char('/') + (*it), &buff ) != 0)
continue;
_files.append( ScanFile(*it, buff.st_size) );
_fileSize += buff.st_size;
}