зеркало из https://github.com/mozilla/pjs.git
Followup patch for bug 289352 "swap back the words from network to host format" patch by alfredkayser@nl.ibm.com, r=darin
This commit is contained in:
Родитель
3515639749
Коммит
ba5e4322e3
|
@ -92,7 +92,11 @@ nsDiskCacheBlockFile::Open( nsILocalFile * blockFile, PRUint32 blockSize)
|
||||||
rv = NS_ERROR_UNEXPECTED;
|
rv = NS_ERROR_UNEXPECTED;
|
||||||
goto error_exit;
|
goto error_exit;
|
||||||
}
|
}
|
||||||
|
#if defined(IS_LITTLE_ENDIAN)
|
||||||
|
// Swap from network format
|
||||||
|
for (int i = 0; i < kBitMapWords; ++i)
|
||||||
|
mBitMap[i] = ntohl(mBitMap[i]);
|
||||||
|
#endif
|
||||||
// validate block file size
|
// validate block file size
|
||||||
const PRInt32 estimatedSize = CalcBlockFileSize();
|
const PRInt32 estimatedSize = CalcBlockFileSize();
|
||||||
if (estimatedSize > fileSize) {
|
if (estimatedSize > fileSize) {
|
||||||
|
|
Загрузка…
Ссылка в новой задаче