Reputation: 73
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?
Upvotes: 2
Views: 1190
Reputation: 1280
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.
Upvotes: 4