Move static constructor into function instead of global. It was coredumping on AIX

This commit is contained in:
jdunn%netscape.com 1999-09-15 21:10:43 +00:00
Родитель 9acf604770
Коммит 43857716d1
2 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -583,9 +583,9 @@ PRInt32 CRTFContent::GetTokenType() {
* @param * @param
* @return * @return
*/ */
static nsString textTerminators("\\{}");
nsresult CRTFContent::Consume(PRUnichar aChar,nsScanner& aScanner) { nsresult CRTFContent::Consume(PRUnichar aChar,nsScanner& aScanner) {
static nsString textTerminators("\\{}");
PRInt32 result=aScanner.ReadUntil(mTextValue,textTerminators,PR_FALSE,PR_FALSE); PRInt32 result=aScanner.ReadUntil(mTextValue,textTerminators,PR_FALSE,PR_FALSE);
return result; return result;
} }

Просмотреть файл

@ -583,9 +583,9 @@ PRInt32 CRTFContent::GetTokenType() {
* @param * @param
* @return * @return
*/ */
static nsString textTerminators("\\{}");
nsresult CRTFContent::Consume(PRUnichar aChar,nsScanner& aScanner) { nsresult CRTFContent::Consume(PRUnichar aChar,nsScanner& aScanner) {
static nsString textTerminators("\\{}");
PRInt32 result=aScanner.ReadUntil(mTextValue,textTerminators,PR_FALSE,PR_FALSE); PRInt32 result=aScanner.ReadUntil(mTextValue,textTerminators,PR_FALSE,PR_FALSE);
return result; return result;
} }