Bug 278738 – file:// directory not shown containing a file larger than 2GB. r=bsmedberg

This commit is contained in:
Mike Hommey
2008-08-06 13:09:44 +02:00
parent e6d826419c
commit 8f0a126947
2 changed files with 24 additions and 2 deletions

View File

@@ -113,7 +113,11 @@ private:
~nsLocalFile() {}
protected:
#ifdef HAVE_STAT64
struct stat64 mCachedStat;
#else
struct stat mCachedStat;
#endif
nsCString mPath;
PRPackedBool mHaveCachedStat;