Bug 283487 nsStringInputStream is still broken

use LengthRemaining consistently
r=darin
This commit is contained in:
timeless%mozdev.org 2006-12-06 18:46:29 +00:00
Родитель 1440cf89ed
Коммит 35d887c035
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -264,7 +264,7 @@ nsStringInputStream::ReadSegments(nsWriteSegmentFun writer, void *closure,
NS_ASSERTION(mLength >= mOffset, "bad stream state");
// We may be at end-of-file
PRUint32 maxCount = mLength - mOffset;
PRUint32 maxCount = LengthRemaining();
if (maxCount == 0) {
*result = 0;
return NS_OK;