vote up 5 vote down star
1

What memory leak detection tools are available for use with open source C/C++ on Windows?

flag

5 Answers

vote up 2 vote down check

The mem package is an effective and straightforward tool to detect memory buffer overflows, underflows, leaks, double-deletion, and dangling references.

link|flag
vote up 5 vote down

I've been using VLD (Visual Leak Detector) for some times, it works nicely for good code, for more complex code; it's not perfect.

link|flag
Newer version at author's home page: dmoulding.googlepages.com/vld – Chris Morley Nov 13 '08 at 3:49
From the documentation: It is designed specifically for use with Visual C++, and it depends on heap debugging functions found only in Microsoft's C runtime library. – Rob Kam Nov 13 '08 at 8:30
vote up 0 vote down

LeakDiag. Quite hard to find nowadays, but available here. You might also like to get LDGrapher, available in the same place.

link|flag
vote up 0 vote down

DebugDiags

link|flag
vote up 0 vote down

WinDbg is always a good choice for any program open or closed.

link|flag

Your Answer

Get an OpenID
or

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