In reference to bug # 12415

Added assertion ( per warrne's request ) to detect null char occasionally appearing in the input
stream provided by necko
R=pollmann


git-svn-id: svn://10.0.0.236/trunk@50073 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
harishd%netscape.com
1999-10-07 01:30:56 +00:00
parent bc8b6d116e
commit 946d742a4d
2 changed files with 6 additions and 4 deletions

View File

@@ -265,8 +265,9 @@ PRBool nsScanner::Append(const char* aBuffer, PRUint32 aLen){
// it won't break UCS2 file
// Hack Start
for(PRInt32 i=0;i<unicharLength;i++)
if(0x0000 == unichars[i])
unichars[i] = 0x0020;
NS_ASSERTION(0x0000 != unichars[i],"found a null character");
//if(0x0000 == unichars[i])
//unichars[i] = 0x0020;
// Hack End
mBuffer.Append(unichars, unicharLength);

View File

@@ -265,8 +265,9 @@ PRBool nsScanner::Append(const char* aBuffer, PRUint32 aLen){
// it won't break UCS2 file
// Hack Start
for(PRInt32 i=0;i<unicharLength;i++)
if(0x0000 == unichars[i])
unichars[i] = 0x0020;
NS_ASSERTION(0x0000 != unichars[i],"found a null character");
//if(0x0000 == unichars[i])
//unichars[i] = 0x0020;
// Hack End
mBuffer.Append(unichars, unicharLength);