Click here to Skip to main content
Licence 
First Posted 21 May 2002
Views 144,146
Bookmarked 52 times

Detailed memory leak dumps from a console app

By Chris Losinger | 21 May 2002
How to get path and line number info for memory leaks, in a console app

1

2

3
3 votes, 20.0%
4
12 votes, 80.0%
5
4.77/5 - 25 votes
μ 4.58, σa 0.72 [?]

Introduction

Finding memory leaks in a non-MFC app can be difficult because the debugger doesn't display path and line number info in the debug window. But, it's quite easy to enable that info. Here's how:

Step 1

Copy this to a file called LeakWatcher.h

#ifndef IMWATCHINGYOULEAK
#define IMWATCHINGYOULEAK

#include <crtdbg.h>

#ifdef _DEBUG
void* operator new(size_t nSize, const char * lpszFileName, int nLine)
{
    return ::operator new(nSize, 1, lpszFileName, nLine);
}
#define DEBUG_NEW new(THIS_FILE, __LINE__)

#define MALLOC_DBG(x) _malloc_dbg(x, 1, THIS_FILE, __LINE__);
#define malloc(x) MALLOC_DBG(x)

#endif // _DEBUG

#endif // #include guard

Step 2

Call _CrtDumpMemoryLeaks(); at the end of your program (or wherever you want to see outstanding memory allocations).

Steps 3...N

Add this to each of your source files (after your last #include) :

#include "LeakWatcher.h"

#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif

What does it do?

This does the same thing an MFC app does - it provides the path and line number of each allocation to the C-runtime allocation routines. Those routines store the path and line number for each allocation, and spit them out when you call _CrtDumpMemoryLeaks();. You should recognize that little chunk of code in step 3 from every source file that the AppWizard (and ClassWizard, mostly) has ever created.

Why not just use _CRTDBG_MAP_ALLOC?

#define _CRTDBG_MAP_ALLOC will provide file/line info for leaks caused by malloc, but for leaks with new, it ends up telling you that the leak occurred in crtdbg.h (because that's where MS defined their new) - not really useful.

Credits

This represents about ten minutes of searching through Microsoft's C runtime and MFC source files. So, all of the credit goes to MS. But, all of the blame goes to MS, too, for not making this part of the non-MFC headers. Anyway, have fun and be excellent to each other.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here

About the Author

Chris Losinger

Software Developer

United States United States

Member
Chris Losinger is the president of Smaller Animals Software, Inc..

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
GeneralHit or Miss on the line number reporting... Pinmemberheckknow12:54 24 Dec '06  
GeneralRe: Hit or Miss on the line number reporting... Pinmembersmjones-home11:16 15 Mar '07  
GeneralTwo Problems PinsussAndrew @ Neoteck22:36 4 May '05  
GeneralRe: Two Problems PinsussAndrew @ Neoteck22:37 4 May '05  
GeneralRe: Two Problems PinsupporterChris Losinger1:59 5 May '05  
GeneralRe: Two Problems PinsussAndrew @ Neoteck14:34 5 May '05  
GeneralRe: Two Problems PinmemberNosferatus6:53 22 Jul '05  
GeneralRe: Two Problems PinmemberBob Stanneveld22:15 1 Feb '06  
QuestionWhere is memory leak from? Pinmembermorntide17:05 25 Feb '05  
AnswerRe: Where is memory leak from? PinmemberNosferatus6:59 22 Jul '05  
Questionisn't this better? PinsussAnonymous1:17 2 Feb '05  
GeneralWhere to put _CrtDumpMemoryLeaks() for Dialog based applications... Pinsussrbid22:16 21 Dec '04  
GeneralTHIS_FILE redefinition Problems PinsussAnonymous17:37 5 Jan '04  
GeneralRe: THIS_FILE redefinition Problems PinsussAnonymous18:23 5 Jan '04  
GeneralRe: THIS_FILE redefinition Problems PinsupporterChris Losinger2:32 6 Jan '04  
GeneralRe: THIS_FILE redefinition Problems PinsussAnonymous15:14 6 Jan '04  
GeneralRe: THIS_FILE redefinition Problems PinsussAnonymous15:40 6 Jan '04  
GeneralRe: THIS_FILE redefinition Problems PinsupporterChris Losinger15:53 6 Jan '04  
GeneralRe: THIS_FILE redefinition Problems PinsussAnonymous4:11 7 Jan '04  
GeneralRe: THIS_FILE redefinition Problems PinsupporterChris Losinger4:39 7 Jan '04  
GeneralRe: THIS_FILE redefinition Problems PinsussAnonymous5:34 7 Jan '04  
GeneralRe: THIS_FILE redefinition Problems PinsussAnonymous5:39 7 Jan '04  
Generalspecialized "new" is never called Pinmemberblizzymadden13:46 25 Nov '03  
GeneralLink Errors PinsussChristian Cheney6:59 19 Nov '02  
GeneralRe: Link Errors PinsupporterChris Losinger7:05 19 Nov '02  

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.

Permalink | Advertise | Privacy | Mobile
Web02 | 2.5.120210.1 | Last Updated 22 May 2002
Article Copyright 2002 by Chris Losinger
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid