Has anyone been successful using LeakDiag to track memory allocation on 64-bit Windows? Or, do you know of another free tool to replace LeakDiag for 64-bit?

link|improve this question

feedback

2 Answers

I have tried visual leak detector

http://vld.codeplex.com/

and it works quite well. It has a few quirks but it works quite nicely in my big application here at work (Managed C/C++).

I also second UMDH, but the book Advanced Windows Debugging says that UMDH has limitations in that it can only detect leaks using the Windows Heap Manager, and that the C Runtime is "not tracked very well...".

I've tried LeakDiag an obscure, forgotten tool, available in a dusty corner of a forgotten FTP site on microsoft. It is also described in the book Advanced Windows Debugging, however, the tool doesn't work very well at all. I consider it worthless for a 64 bit app that has Native and Managed C++ in it.

link|improve this answer
2  
I've found out more about LeakDiag since I wrote this. LeakDiag only works for WinXP. It doesn't work on Vista or Windows 7. – C Johnson Apr 26 '11 at 16:44
feedback

I know one powerful and free. UMDH in Debuggins Tools for Windows. See http://support.microsoft.com/kb/268343 for introductions and usage.

Unfortunately it does not have the nice GUI as LeakDiag.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.