зеркало из https://github.com/mozilla/gecko-dev.git
nsBufferedStream::GetLength should return the data length instead of the write offset.
This commit is contained in:
Родитель
e97a818ea3
Коммит
f97c320ffb
|
@ -231,7 +231,7 @@ nsresult nsBufferedStream::GetAvailableSpace(PRUint32 *aCount)
|
|||
nsresult nsBufferedStream::GetLength(PRUint32 *aLength)
|
||||
{
|
||||
LockStream();
|
||||
*aLength = m_WriteOffset;
|
||||
*aLength = m_dataLength;
|
||||
UnlockStream();
|
||||
|
||||
return NS_OK;
|
||||
|
@ -779,4 +779,3 @@ PRInt32 nsBlockingStream::ReadBuffer(char *aBuf, PRUint32 aCount)
|
|||
|
||||
return bytesRead;
|
||||
}
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче