How can I tell if my managed code is leaking memory due to native library calls? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T14:54:19Z http://stackoverflow.com/feeds/question/244489 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/244489/how-can-i-tell-if-my-managed-code-is-leaking-memory-due-to-native-library-calls 1 How can I tell if my managed code is leaking memory due to native library calls? sam 2008-10-28T19:20:57Z 2008-10-29T02:05:41Z <p>I have a managed dll that calls into a native library. This native library generally returns IntPtrs. These can be passed in to other methods in the native library to do things, or to tell the library to free the instance associated with the IntPtr. But only some of the instances need to freed in this way, others are managed by the library. The problem is that the documentation is not always clear about which instances must be freed and which must not.</p> <p>What I want to know is if there is a way that I can tell if my code has kept references to any of the pointers which must be freed, and so is causing memory to leak?</p> http://stackoverflow.com/questions/244489/how-can-i-tell-if-my-managed-code-is-leaking-memory-due-to-native-library-calls/244540#244540 1 Answer by tvanfosson for How can I tell if my managed code is leaking memory due to native library calls? tvanfosson 2008-10-28T19:33:20Z 2008-10-28T19:33:20Z <p>The easiest way is probably to use a memory profiler. A quick google turned up a link to <a href="http://memprofiler.com/" rel="nofollow">MemProfiler</a>. I've used this once (as a trial) and I was able to find places where I wasn't properly disposing of DirectoryEntries. I'm sure there are others, including this <a href="http://www.red-gate.com/products/ants_profiler/index.htm" rel="nofollow">one</a> by RedGate.</p> http://stackoverflow.com/questions/244489/how-can-i-tell-if-my-managed-code-is-leaking-memory-due-to-native-library-calls/244981#244981 1 Answer by ScottCher for How can I tell if my managed code is leaking memory due to native library calls? ScottCher 2008-10-28T21:44:29Z 2008-10-28T21:44:29Z <p>I use WinDbg (its available <a href="http://www.microsoft.com/whdc/devtools/debugging/default.mspx" rel="nofollow">here</a>). Its command-line driven but provides lots of good reports include stack information, numbers of objects and size taken (this can help point to items that are not being disposed).</p> <p>There's also the Debug Diagnostic tool which has specific reporting for Memory and Handle Leaks. Its <a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=28bd5941-c458-46f1-b24d-f60151d875a3&amp;displaylang=en" rel="nofollow">here</a></p> http://stackoverflow.com/questions/244489/how-can-i-tell-if-my-managed-code-is-leaking-memory-due-to-native-library-calls/245577#245577 0 Answer by dp for How can I tell if my managed code is leaking memory due to native library calls? dp 2008-10-29T02:05:41Z 2008-10-29T02:05:41Z <p>You may wish to consider using <a href="http://msdn.microsoft.com/en-us/library/system.runtime.interopservices.safehandle.aspx" rel="nofollow">SafeHandles</a> to wrap the handles returned from the Native code. It provides some additional value over an IntPtr.</p>