Bug 724207 - Save 15-20ms on startup from unused file attributes fetch when opening files. r=neil.

This commit is contained in:
Brian R. Bondy 2012-02-08 16:51:45 -05:00
Родитель b0ce243e0e
Коммит 74e7a459bf
1 изменённых файлов: 2 добавлений и 2 удалений

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

@ -942,8 +942,8 @@ nsLocalFile::InitWithPath(const nsAString &filePath)
NS_IMETHODIMP
nsLocalFile::OpenNSPRFileDesc(PRInt32 flags, PRInt32 mode, PRFileDesc **_retval)
{
nsresult rv = ResolveAndStat();
if (NS_FAILED(rv) && rv != NS_ERROR_FILE_NOT_FOUND)
nsresult rv = Resolve();
if (NS_FAILED(rv))
return rv;
return OpenFile(mResolvedPath, flags, mode, _retval);