Doh! I checked in the wrong patch onto the tip. Thanks for wiping my chin, rjc.

This commit is contained in:
waterson%netscape.com 2000-03-18 06:24:19 +00:00
Родитель 9043c2381c
Коммит 0413d7071d
1 изменённых файлов: 6 добавлений и 0 удалений

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

@ -1120,8 +1120,14 @@ rdf_BlockingWrite(nsIOutputStream* stream, const nsString& s)
{
nsresult rv;
char* utf8 = s.ToNewUTF8String();
if (! utf8)
return NS_ERROR_OUT_OF_MEMORY;
// Be sure to grab the UTF-8 encoded string's length, because it
// may be longer than the length of the unencoded string.
PRInt32 len = PL_strlen(utf8);
rv = rdf_BlockingWrite(stream, utf8, len);
nsCRT::free(utf8);
return rv;
}