Bug 541828 followup: Convert "sizeof" result to signed integer, to fix signed-vs-unsigned build warning in nsZipArchive. r=tglek

This commit is contained in:
Daniel Holbert 2010-01-28 01:52:35 -08:00
Родитель 11b174b084
Коммит b1acf1628b
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -538,7 +538,7 @@ nsresult nsZipArchive::BuildFileList()
//-- Read the central directory headers
buf = startp + centralOffset;
if (endp - buf < sizeof(PRUint32))
if (endp - buf < PRInt32(sizeof(PRUint32)))
return NS_ERROR_FILE_CORRUPTED;
PRUint32 sig = xtolong(buf);
while (sig == CENTRALSIG) {