Closed
Bug 77391
Opened 24 years ago
Closed 24 years ago
nsLDAPConnection should use nsMemory::Alloc for nsLDAPMessages
Categories
(Directory Graveyard :: LDAP XPCOM SDK, defect)
Directory Graveyard
LDAP XPCOM SDK
Tracking
(Not tracked)
VERIFIED
INVALID
People
(Reporter: dmosedale, Assigned: dmosedale)
Details
Right now it uses the C++ new operator, which probably means that using
nsMemory::Free (what Release almost certainly does) won't work, and the object
will leak.
Comment 1•24 years ago
|
||
After talking to shaver, the current behavior is actually the correct behavior.
Components themselves are allocated with new; the shared allocator is for strings
(and maybe other stuff?).
Status: NEW → RESOLVED
Closed: 24 years ago
Resolution: --- → INVALID
You need to log in
before you can comment on or make changes to this bug.
Description
•