thanks for your help -----Original Message----- From: Tinny Ng [mailto:[EMAIL PROTECTED]] Sent: Thursday, November 01, 2001 3:48 PM To: [EMAIL PROTECTED] Subject: Re: delete[] problems with transcode
"Christy, Rich" wrote: > However, I do see several references to possible > leaks in IDeepNodeListPool within calls to IDOM_NodeList > getElementsByTagName(). Any ideas? > > Thanks > > Rich I just looked into the code again, I think there is a small leak on the pool instance. Anyway, I just checked in the fix, and here is the diff if you want to test out the fix: cvs diff IDDocumentImpl.cpp (in directory D:\cvswork\xml-xerces\c\src\idom) Index: IDDocumentImpl.cpp =================================================================== RCS file: /home/cvs/xml-xerces/c/src/idom/IDDocumentImpl.cpp,v retrieving revision 1.11 diff -r1.11 IDDocumentImpl.cpp 952c952 < fNodeListPool = new IDDeepNodeListPool<IDDeepNodeListImpl>(109, false); --- > fNodeListPool = new (this) IDDeepNodeListPool<IDDeepNodeListImpl>(109, false); Tinny --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
