Memory leak detection under Windows for GNU C/C++

2019-01-23 17:41发布

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

4条回答
虎瘦雄心在
2楼-- · 2019-01-23 18:11

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

查看更多
戒情不戒烟
3楼-- · 2019-01-23 18:18

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

查看更多
虎瘦雄心在
4楼-- · 2019-01-23 18:25

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

Original link to c.snippets.org, now invalid.

查看更多
冷血范
5楼-- · 2019-01-23 18:31

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.

查看更多
登录 后发表回答