Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Memory leak detection under Windows for GNU C/C++ [closed]

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

like image 436
Rob Kam Avatar asked Feb 04 '23 12:02

Rob Kam


2 Answers

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.

like image 88
Max Avatar answered Feb 06 '23 15:02

Max


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.

like image 41
Walter Bright Avatar answered Feb 06 '23 16:02

Walter Bright