Leak detection code with visual leak detector

I am trying to use Visual Leak Detector in Visual Studio 2008, here is an example of the output I get:

Detected memory leaks!
Dumping objects ->
{204} normal block at 0x036C1568, 1920 bytes long.
 Data: <                > 80 08 AB 03 00 01 AB 03 80 F9 AA 03 00 F2 AA 03 
{203} normal block at 0x0372CC68, 40 bytes long.
 Data: <(               > 28 00 00 00 80 02 00 00 E0 01 00 00 01 00 18 00 
{202} normal block at 0x0372CC00, 44 bytes long.
 Data: << E             > 3C 16 45 00 80 02 00 00 E0 01 00 00 01 00 00 00 

The user manual says to click on any line to go to the corresponding file / line of code; I tried to click on each line, but nothing happened! What am I missing?

+3
source share
2 answers

Have you compiled your code with optimization and debugging information? Without this, it is unlikely that you will be able to link the addresses to your source code.

, , (, ).

+3

deleaker. .

+2

Source: https://habr.com/ru/post/1742342/


All Articles