зеркало из https://github.com/mozilla/pjs.git
Not part of build, doing some buffer init on String wrapper
This commit is contained in:
Родитель
77d8896b41
Коммит
d165632a57
|
@ -639,8 +639,11 @@ String& String::subString(Int32 start, Int32 end, String& dest) const
|
|||
char* String::toCharArray() const
|
||||
{
|
||||
char* tmpBuffer = new char[ptrNSString->Length()+1];
|
||||
|
||||
return toCharArray(tmpBuffer);
|
||||
if (memset(tmpBuffer,' ',ptrNSString->Length())){
|
||||
return toCharArray(tmpBuffer);
|
||||
} else {
|
||||
return nsnull;
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Загрузка…
Ссылка в новой задаче