Closed
Bug 103317
Opened 24 years ago
Closed 24 years ago
nsEditor::CloneAttributes() has memory leak (should use nsCOMPtr)
Categories
(Core :: DOM: Editor, defect)
Tracking
()
VERIFIED
FIXED
mozilla0.9.6
People
(Reporter: cmanske, Assigned: cmanske)
Details
(Whiteboard: EDITORBASE)
Attachments
(1 file)
|
1.53 KB,
patch
|
kinmoz
:
superreview+
|
Details | Diff | Splinter Review |
This method gets an attribute node like this:
nsIDOMNode* attrNode;
when it should use this:
nsCOMPtr<nsIDOMNode> attrNode;
| Assignee | ||
Comment 1•24 years ago
|
||
| Assignee | ||
Updated•24 years ago
|
Attachment #52232 -
Flags: superreview+
Comment 3•24 years ago
|
||
r=Hurricane, rcassin@supernova.org
| Assignee | ||
Comment 4•24 years ago
|
||
checked in
You need to log in
before you can comment on or make changes to this bug.
Description
•