зеркало из https://github.com/mozilla/pjs.git
string fixes r=waterson
This commit is contained in:
Родитель
5918434cde
Коммит
2c6c0def52
|
@ -1705,7 +1705,7 @@ nsAbSync::ExtractCurrentLine()
|
|||
( (*mProtocolOffset != CR) && (*mProtocolOffset != LF) )
|
||||
)
|
||||
{
|
||||
extractString.Append(NS_ConvertASCIItoUCS2(mProtocolOffset), 1);
|
||||
extractString.Append(PRUnichar(*mProtocolOffset));
|
||||
mProtocolOffset++;
|
||||
}
|
||||
|
||||
|
|
|
@ -232,7 +232,7 @@ nsAbSyncPostEngine::OnDataAvailable(nsIChannel * aChannel, nsISupports * ctxt, n
|
|||
if (NS_FAILED(rv)) return rv;
|
||||
|
||||
// write to the protocol response buffer...
|
||||
mProtocolResponse.Append(NS_ConvertASCIItoUCS2(buf), readLen);
|
||||
mProtocolResponse.Append(NS_ConvertASCIItoUCS2(buf, readLen));
|
||||
PR_FREEIF(buf);
|
||||
mTotalWritten += readLen;
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче