fixes bug 308369 "Stop copying stat cache when cloning nsIFile instances" r=josh sr=dougt

git-svn-id: svn://10.0.0.236/trunk@180149 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
darin%meer.net
2005-09-13 22:08:52 +00:00
parent ca84e87e23
commit 1093b35b11
3 changed files with 7 additions and 13 deletions

View File

@@ -247,9 +247,8 @@ nsLocalFile::nsLocalFile() :
}
nsLocalFile::nsLocalFile(const nsLocalFile& other)
: mCachedStat(other.mCachedStat)
, mPath(other.mPath)
, mHaveCachedStat(other.mHaveCachedStat)
: mPath(other.mPath)
, mHaveCachedStat(PR_FALSE)
{
}