mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-25 13:51:41 +00:00
Bug 240257 directory listings show wrong sizes for files > 4 GB
Fixing default size (changing from (unsigned 32 bit)(-1) to (signed 64 bit) (-1) r=biesi, jan.ruzicka@comcast.net sr=darin
This commit is contained in:
parent
863aded4fa
commit
ceda449f69
@ -45,7 +45,7 @@ NS_IMPL_THREADSAFE_ISUPPORTS1(nsDirIndex,
|
||||
nsIDirIndex)
|
||||
|
||||
nsDirIndex::nsDirIndex() : mType(TYPE_UNKNOWN),
|
||||
mSize((PRUint32)(-1)),
|
||||
mSize(LL_INIT(0, -1)),
|
||||
mLastModified(-1) {
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user