mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-03-04 15:51:37 +00:00
Fix for the bustage.
r=pollmann
This commit is contained in:
parent
886045c92a
commit
fd9d596cc7
@ -469,7 +469,7 @@ void nsHTMLContentSinkStream::Write(const nsString& aString)
|
||||
if (mUnicodeEncoder)
|
||||
{
|
||||
EncodeToBuffer(aString);
|
||||
out.write(mBuffer, mBuffer.Length());
|
||||
out.write(&mBuffer, mBuffer.Length());
|
||||
}
|
||||
// else just write the unicode
|
||||
else
|
||||
|
@ -469,7 +469,7 @@ void nsHTMLContentSinkStream::Write(const nsString& aString)
|
||||
if (mUnicodeEncoder)
|
||||
{
|
||||
EncodeToBuffer(aString);
|
||||
out.write(mBuffer, mBuffer.Length());
|
||||
out.write(&mBuffer, mBuffer.Length());
|
||||
}
|
||||
// else just write the unicode
|
||||
else
|
||||
|
Loading…
x
Reference in New Issue
Block a user