mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-04-03 04:52:54 +00:00
null terminate empty auto string properly
This commit is contained in:
parent
85370222ed
commit
38ccae3b3c
@ -1910,6 +1910,7 @@ nsAutoString::nsAutoString()
|
||||
mStr = mBuf;
|
||||
mLength=0;
|
||||
mCapacity = (sizeof(mBuf) / sizeof(chartype))-sizeof(chartype);
|
||||
mStr[0] = 0;
|
||||
}
|
||||
|
||||
/*-------------------------------------------------------
|
||||
|
@ -1910,6 +1910,7 @@ nsAutoString::nsAutoString()
|
||||
mStr = mBuf;
|
||||
mLength=0;
|
||||
mCapacity = (sizeof(mBuf) / sizeof(chartype))-sizeof(chartype);
|
||||
mStr[0] = 0;
|
||||
}
|
||||
|
||||
/*-------------------------------------------------------
|
||||
|
@ -1910,6 +1910,7 @@ nsAutoString::nsAutoString()
|
||||
mStr = mBuf;
|
||||
mLength=0;
|
||||
mCapacity = (sizeof(mBuf) / sizeof(chartype))-sizeof(chartype);
|
||||
mStr[0] = 0;
|
||||
}
|
||||
|
||||
/*-------------------------------------------------------
|
||||
|
@ -1910,6 +1910,7 @@ nsAutoString::nsAutoString()
|
||||
mStr = mBuf;
|
||||
mLength=0;
|
||||
mCapacity = (sizeof(mBuf) / sizeof(chartype))-sizeof(chartype);
|
||||
mStr[0] = 0;
|
||||
}
|
||||
|
||||
/*-------------------------------------------------------
|
||||
|
Loading…
x
Reference in New Issue
Block a user