Closed
Bug 16373
Opened 26 years ago
Closed 26 years ago
[MLK] CIDCreateInstance::Call() leaks
Categories
(Core :: XPConnect, defect, P2)
Core
XPConnect
Tracking
()
RESOLVED
FIXED
M11
People
(Reporter: mozilla, Assigned: jband_mozilla)
References
()
Details
CIDCreateInstance::Call() makes the following call [around line #657]:
piid = xpc_JSObjectToID(cx, iidobj);
but never frees the piid (which is a NSID *) if it succeeds in getting one.
[xpc_JSObjectToID() allocates a NEW nsID via nsAllocator::Clone.] Please fix
this leak.
[Note: leak detected using beard's Boehm GC]
| Reporter | ||
Updated•26 years ago
|
Priority: P3 → P2
Target Milestone: M11
| Assignee | ||
Updated•26 years ago
|
Status: NEW → ASSIGNED
| Assignee | ||
Comment 1•26 years ago
|
||
beard also pointed this out. A have a fix ready.
| Assignee | ||
Updated•26 years ago
|
Status: ASSIGNED → RESOLVED
Closed: 26 years ago
Resolution: --- → FIXED
| Assignee | ||
Comment 2•26 years ago
|
||
fix in
| Comment hidden (collapsed) |
You need to log in
before you can comment on or make changes to this bug.
Description
•