I have a question about "StringImpl::create()". Is it can only input latin1
data?
If it can only input the latin1 data, the following code maybe incrorect:
In WTFString.cpp :
String String::format(const char *format, ...)
{
...
Vector<char, 256> buffer;
...
return StringImpl::create(buffer.data(), len);
}
The buffer.data() maybe utf8 data!
Thanks.
pattin_______________________________________________
webkit-dev mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-dev