<DIV>I have a question about "StringImpl::create()". Is it can only input latin1 data? </DIV>
<DIV>If it can only input the latin1 data, the following code maybe incrorect:</DIV>
<DIV> </DIV>
<DIV>In WTFString.cpp :</DIV>
<DIV>String String::format(const char *format, ...)</DIV>
<DIV>{</DIV>
<DIV> ...</DIV>
<DIV> Vector<char, 256> buffer;</DIV>
<DIV>...</DIV>
<DIV> return StringImpl::create(buffer.data(), len);</DIV>
<DIV>}</DIV>
<DIV> </DIV>
<DIV>The buffer.data() maybe utf8 data!</DIV>
<DIV> </DIV>
<DIV>Thanks.</DIV>
<DIV> </DIV>
<DIV>pattin</DIV>