https://sites.google.com/site/dmoulding/
Visual Leak Detector
NOTE: This is no longer the official homepage of Visual Leak Detector. The page has moved to vld.codeplex.com . Visual Leak Detector is a free, robust, open-source memory leak detection system for Visual C++. It's pretty easy to use. After installing it, you just need to tell Visual C++ where to find the included header and library file. Then it can be used with any C/C++ project simply by adding the following line to your code: #include <vld.h> When you run your program under the Visual Studio debugger, Visual Leak Detector will output a memory leak report at the end of your debugging session. The leak report includes the full call stack showing how any leaked memory blocks were allocated. Double-click on a line in the call stack to jump to that file and line in the editor window. It's a very effective way to quickly diagnose, and fix, memory leaks in C/C++ applications. This software is provided "AS IS" without warranty of any kind. |
'디버깅 & 스킬 > 디버깅 & VS Debugging' 카테고리의 다른 글
VisualLeakDetector(vld) 사용/설정/유의사항 (0) | 2012.11.24 |
---|---|
Visual Leak Detector for Visual C++ 2008/2010/2012 (0) | 2012.11.24 |
_CrtSetDbgFlag , _CrtDumpMemoryLeaks 를 동시에 쓰면 안된다 (0) | 2012.11.23 |
메모리주소의 의미 (0) | 2012.11.23 |
메모리 누수 없는 코드 만들기 (0) | 2012.11.23 |