зеркало из https://github.com/mozilla/gecko-dev.git
fix build bustage, due to nsCRT::strlen(char* s) removed
This commit is contained in:
Родитель
5468d9b6ff
Коммит
b4b6e3703b
|
@ -667,7 +667,7 @@ static void myPLstrncpy(Str255 dst, const char* src, int inMax)
|
|||
static const char* TruncNodeName(const char *aNode, char *outBuf)
|
||||
{
|
||||
PRUint32 nodeLen;
|
||||
if ((nodeLen = nsCRT::strlen(aNode)) > 31)
|
||||
if ((nodeLen = strlen(aNode)) > 31)
|
||||
{
|
||||
static PRBool sInitialized = PR_FALSE;
|
||||
static CharByteTable sTable;
|
||||
|
|
Загрузка…
Ссылка в новой задаче