Stephen Collyer wrote:
David Bertoni wrote:
Are you calling XMLPlatformUtils::Terminate() before your application
exits?
Dave
No. My app. doesn't in fact terminate, however - it's a server.
I've done a bit more investigation, and AFAICS, there's no leak,
after having run several transaction through the system.
It never terminates? That's quite a server... ;-)
I'm guessing that this memory is allocated at Xerces initialization
time, and would be released if I terminated it correctly ? If so,
I'll do that, though it's not really a problem for me if that is
the case.
Exactly. If you don't want false positives from leak-detection
software, you need to call XMLPlatformUtils::Terminate().
DAve