Changed NS_ASSERTION to use NS_WARN_IF_FALSE. r=pavlov
git-svn-id: svn://10.0.0.236/trunk@52412 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
parent
ff9db70a07
commit
87358978bd
@ -275,7 +275,7 @@ PRBool nsScanner::Append(const char* aBuffer, PRUint32 aLen){
|
||||
// it won't break UCS2 file
|
||||
// Hack Start
|
||||
for(PRInt32 i=0;i<unicharLength;i++)
|
||||
NS_ASSERTION(0x0000 != unichars[i],"found a null character");
|
||||
NS_WARN_IF_FALSE(0x0000 != unichars[i], "found a null character");
|
||||
//if(0x0000 == unichars[i])
|
||||
//unichars[i] = 0x0020;
|
||||
// Hack End
|
||||
|
||||
@ -275,7 +275,7 @@ PRBool nsScanner::Append(const char* aBuffer, PRUint32 aLen){
|
||||
// it won't break UCS2 file
|
||||
// Hack Start
|
||||
for(PRInt32 i=0;i<unicharLength;i++)
|
||||
NS_ASSERTION(0x0000 != unichars[i],"found a null character");
|
||||
NS_WARN_IF_FALSE(0x0000 != unichars[i], "found a null character");
|
||||
//if(0x0000 == unichars[i])
|
||||
//unichars[i] = 0x0020;
|
||||
// Hack End
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user