fix bustage due to nsCRT::strlen(char* s) removed

This commit is contained in:
cathleen%netscape.com 2002-02-28 04:55:04 +00:00
parent 074652f237
commit 5468d9b6ff

View File

@ -258,7 +258,7 @@ nsFSStringConversion::FSToNewUCS( const char* aIn, PRUnichar** aOut)
res = PrepareDecoder();
if(NS_SUCCEEDED(res))
{
PRInt32 inLength = nsCRT::strlen(aIn);
PRInt32 inLength = strlen(aIn);
PRInt32 outLength;
res= mDecoder->GetMaxLength(aIn, inLength,&outLength);
if(NS_SUCCEEDED(res)) {