Closed
Bug 198956
Opened 22 years ago
Closed 13 years ago
nsRange::GetNodeLength declares len as unsigned and uses it as signed
Categories
(Core :: DOM: Core & HTML, defect)
Tracking
()
RESOLVED
FIXED
People
(Reporter: timeless, Assigned: timeless)
Details
653 PRInt32 nsRange::GetNodeLength(nsIDOMNode *aNode)
654 {
659 PRUint32 len = -1;
677 return len;
678 }
This triggers warnings and is silly.
Comment 1•20 years ago
|
||
Updated•16 years ago
|
QA Contact: desale → traversal-range
Comment 2•13 years ago
|
||
This was evidently fixed long ago. Today's nsRange::GetNodeLength returns a PRUint32.
Status: NEW → RESOLVED
Closed: 13 years ago
Resolution: --- → FIXED
Updated•12 years ago
|
Component: DOM: Traversal-Range → DOM: Core & HTML
You need to log in
before you can comment on or make changes to this bug.
Description
•