зеркало из https://github.com/mozilla/gecko-dev.git
change existence test to allow mail folders > 2GB, sr=mscott 361730
This commit is contained in:
Родитель
ee85b33908
Коммит
ad1af2ce32
|
@ -158,8 +158,7 @@ char* nsFileSpec::GetLeafName() const
|
|||
PRBool nsFileSpec::Exists() const
|
||||
//----------------------------------------------------------------------------------------
|
||||
{
|
||||
struct stat st;
|
||||
return !mPath.IsEmpty() && 0 == stat(mPath, &st);
|
||||
return !mPath.IsEmpty() && 0 == access(mPath, F_OK);
|
||||
} // nsFileSpec::Exists
|
||||
|
||||
//----------------------------------------------------------------------------------------
|
||||
|
|
Загрузка…
Ссылка в новой задаче