Remove assertion as we are finding that it doesn't apply.

git-svn-id: svn://10.0.0.236/trunk@34691 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
mscott%netscape.com
1999-06-10 23:45:16 +00:00
parent 2b92caea80
commit 1ca7ce2b8d

View File

@@ -571,7 +571,7 @@ static unsigned char * utf8_nextchar(unsigned char *str)
else if ((len >= 2) && (*str >= 0xC0)) {
return (str+2);
}
PR_ASSERT(PR_FALSE);
return (str+1); // error, return +1 to avoid infinite loop
}