_CrtDumpMemoryLeaks truncated output??
        Posted  
        
            by 
                Marin
            
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by Marin
        
        
        
        Published on 2010-12-20T11:11:45Z
        Indexed on 
            2011/01/15
            4:53 UTC
        
        
        Read the original article
        Hit count: 330
        
Hello,
I am trying to use Visual Studio's capability to detect memory leaks, but I keep getting truncated output, like:
Dumping objects ->
{174} normal block at 0x0099ADB8, 48 bytes long.
 Data: <h:\najnovije\tru> 68 3A 5C 6E 61 6A 6E 6F 76 69 6A 65 5C 74 72 75 
{170} normal block at 0x0099AD58, 32 bytes long.
 Data: <h:\najnovije\tru> 68 3A 5C 6E 61 6A 6E 6F 76 69 6A 65 5C 74 72 75 
Object dump complete.
What am I doing wrong? I added
#define _CRTDBG_MAP_ALLOC
#include <stdlib.h>
#include <crtdbg.h>
to the beginning of my code.
Thank you.
© Stack Overflow or respective owner