Fix converter stream part of bug 638236. r=bzbarsky a2.0=blocking

CLOSED TREE
This commit is contained in:
L. David Baron 2011-03-02 21:01:20 -08:00
parent c9056fbe7c
commit 520b20fa0b

View File

@ -254,7 +254,8 @@ nsConverterInputStream::Fill(nsresult * aErrorCode)
NS_ASSERTION(srcConsumed <= mByteData->GetLength(),
"Whoa. The converter should have returned NS_OK_UDEC_MOREINPUT before this point!");
} while (mReplacementChar &&
NS_FAILED(*aErrorCode));
NS_FAILED(*aErrorCode) &&
mUnicharData->GetBufferSize() > mUnicharDataLength);
mLeftOverBytes = mByteData->GetLength() - srcConsumed;