Msxml3 - Memory leak

1.1k Views Asked by At

I plan to write an application (win32 platform) for parsing the xml documents. For parsing the xml's, i plan to use the msxml3.dll (microsoft latest service pack library) but many forum described that this has an huge memory leak issue.

Is this really true that msxml3.dll has huge memory leak?

1

There are 1 best solutions below

0
On

MSXML3 has its own garbage collection mechanism. If you don't know about this mechanism, MSXML3 only "appears" to be leaking memory before garbage collector kicks in and recycles resources. Please check Understanding the MSXML garbage collection mechanism for more details.