зеркало из https://github.com/mozilla/gecko-dev.git
Fixing ToNewUnicode(). Checking in for rickg.
approved: cyeh
This commit is contained in:
Родитель
6412a66059
Коммит
c6ccbf04df
|
@ -573,11 +573,21 @@ char* nsString::ToNewCString() const {
|
|||
* @return ptr to new ascii string
|
||||
*/
|
||||
PRUnichar* nsString::ToNewUnicode() const {
|
||||
nsString temp(mUStr);
|
||||
temp.SetCapacity(8);
|
||||
PRUnichar* result=temp.mUStr;
|
||||
temp.mStr=0;
|
||||
temp.mOwnsBuffer=PR_FALSE;
|
||||
PRUnichar* result=0;
|
||||
if(eOneByte==mCharSize) {
|
||||
nsString temp(mStr);
|
||||
temp.SetCapacity(8);
|
||||
result=temp.mUStr;
|
||||
temp.mStr=0;
|
||||
temp.mOwnsBuffer=PR_FALSE;
|
||||
}
|
||||
else{
|
||||
nsString temp(mUStr);
|
||||
temp.SetCapacity(8);
|
||||
result=temp.mUStr;
|
||||
temp.mStr=0;
|
||||
temp.mOwnsBuffer=PR_FALSE;
|
||||
}
|
||||
return result;
|
||||
}
|
||||
|
||||
|
|
|
@ -573,11 +573,21 @@ char* nsString::ToNewCString() const {
|
|||
* @return ptr to new ascii string
|
||||
*/
|
||||
PRUnichar* nsString::ToNewUnicode() const {
|
||||
nsString temp(mUStr);
|
||||
temp.SetCapacity(8);
|
||||
PRUnichar* result=temp.mUStr;
|
||||
temp.mStr=0;
|
||||
temp.mOwnsBuffer=PR_FALSE;
|
||||
PRUnichar* result=0;
|
||||
if(eOneByte==mCharSize) {
|
||||
nsString temp(mStr);
|
||||
temp.SetCapacity(8);
|
||||
result=temp.mUStr;
|
||||
temp.mStr=0;
|
||||
temp.mOwnsBuffer=PR_FALSE;
|
||||
}
|
||||
else{
|
||||
nsString temp(mUStr);
|
||||
temp.SetCapacity(8);
|
||||
result=temp.mUStr;
|
||||
temp.mStr=0;
|
||||
temp.mOwnsBuffer=PR_FALSE;
|
||||
}
|
||||
return result;
|
||||
}
|
||||
|
||||
|
|
|
@ -573,11 +573,21 @@ char* nsString::ToNewCString() const {
|
|||
* @return ptr to new ascii string
|
||||
*/
|
||||
PRUnichar* nsString::ToNewUnicode() const {
|
||||
nsString temp(mUStr);
|
||||
temp.SetCapacity(8);
|
||||
PRUnichar* result=temp.mUStr;
|
||||
temp.mStr=0;
|
||||
temp.mOwnsBuffer=PR_FALSE;
|
||||
PRUnichar* result=0;
|
||||
if(eOneByte==mCharSize) {
|
||||
nsString temp(mStr);
|
||||
temp.SetCapacity(8);
|
||||
result=temp.mUStr;
|
||||
temp.mStr=0;
|
||||
temp.mOwnsBuffer=PR_FALSE;
|
||||
}
|
||||
else{
|
||||
nsString temp(mUStr);
|
||||
temp.SetCapacity(8);
|
||||
result=temp.mUStr;
|
||||
temp.mStr=0;
|
||||
temp.mOwnsBuffer=PR_FALSE;
|
||||
}
|
||||
return result;
|
||||
}
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче