зеркало из https://github.com/mozilla/pjs.git
Bug 242350 replace LL_INIT(0,-1) with LL_MAXUINT
patch by Zbigniew Braniecki <gandalf@firefox.pl> r=biesi sr=darin
This commit is contained in:
Родитель
8791afdc16
Коммит
0c85dd0591
|
@ -45,7 +45,7 @@ NS_IMPL_THREADSAFE_ISUPPORTS1(nsDirIndex,
|
|||
nsIDirIndex)
|
||||
|
||||
nsDirIndex::nsDirIndex() : mType(TYPE_UNKNOWN),
|
||||
mSize(LL_INIT(0, -1)),
|
||||
mSize(LL_MAXUINT),
|
||||
mLastModified(-1) {
|
||||
}
|
||||
|
||||
|
|
|
@ -331,7 +331,7 @@ nsDirIndexParser::ParseData(nsIDirIndex *aIdx, char* aDataStr) {
|
|||
if (status == 1)
|
||||
aIdx->SetSize(len);
|
||||
else
|
||||
aIdx->SetSize(LL_INIT(0, -1)); // -1 means unknown
|
||||
aIdx->SetSize(LL_MAXUINT); // LL_MAXUINT means unknown
|
||||
}
|
||||
break;
|
||||
case FIELD_LASTMODIFIED:
|
||||
|
|
|
@ -549,7 +549,7 @@ nsIndexedToHTML::OnIndexAvailable(nsIRequest *aRequest,
|
|||
PRInt64 size;
|
||||
aIndex->GetSize(&size);
|
||||
|
||||
if (LL_NE(size, LL_INIT(0, -1)) &&
|
||||
if (LL_NE(PRUint64(size), LL_MAXUINT) &&
|
||||
type != nsIDirIndex::TYPE_DIRECTORY &&
|
||||
type != nsIDirIndex::TYPE_SYMLINK) {
|
||||
nsAutoString sizeString;
|
||||
|
|
|
@ -481,7 +481,7 @@ nsHTTPIndex::OnIndexAvailable(nsIRequest* aRequest, nsISupports *aContext,
|
|||
PRInt64 size;
|
||||
rv = aIndex->GetSize(&size);
|
||||
if (NS_FAILED(rv)) return rv;
|
||||
if (LL_NE(size, LL_INIT(0, -1))) {
|
||||
if (LL_NE(PRUint64(size), LL_MAXUINT)) {
|
||||
PRInt32 intSize;
|
||||
LL_L2I(intSize, size);
|
||||
// XXX RDF should support 64 bit integers (bug 240160)
|
||||
|
|
Загрузка…
Ссылка в новой задаче