Attempt to fix creature bustage

This commit is contained in:
darin%meer.net 2005-04-28 23:00:09 +00:00
Родитель 995dce9a31
Коммит ce94be71f2
1 изменённых файлов: 2 добавлений и 1 удалений

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

@ -818,7 +818,8 @@ nsHttpTransaction::HandleContent(char *buf,
// NOT persistent, we simply accept everything in |buf|.
if (mConnection->IsPersistent()) {
nsInt64 remaining = mContentLength - mContentRead;
*contentRead = PR_MIN(nsInt64(count), remaining);
nsInt64 count64 = count;
*contentRead = PR_MIN(count64, remaining);
*contentRemaining = count - *contentRead;
}
else {