Open
Bug 1031536
Opened 11 years ago
Updated 3 years ago
make assert for upper case chars in compareLowerCaseToASCIINullTerminated() fatal in debug builds
Categories
(Core :: XPCOM, defect)
Core
XPCOM
Tracking
()
NEW
People
(Reporter: bkelly, Unassigned)
Details
This assertion:
NS_ASSERTION(!(*aStr2 >= 'A' && *aStr2 <= 'Z'),
"Unexpected uppercase character");
Should probably be fatal in debug builds as this indicates an programming error has clearly occurred. Or if not at this level, then up in the Equals*Literal() method calls on our string classes.
Updated•3 years ago
|
Severity: normal → S3
You need to log in
before you can comment on or make changes to this bug.
Description
•