vote up 0 vote down star

I have a CMFCToolBar member in my main frame class. After CreateEx()-ing it, I call EnableCustomizeButton() among other things:

CString strCustomize;
bNameValid = strCustomize.LoadString(IDS_TOOLBAR_CUSTOMIZE);
ASSERT(bNameValid);
m_wndToolBar.EnableCustomizeButton(TRUE, ID_VIEW_CUSTOMIZE, strCustomize);

This is quite close to what AppWizard generated...

When my application exits, I get the following debug output:

{2409} client block at 0x026201D0, subtype c0, 300 bytes long.
a CMFCCustomizeButton object at $026201D0, 300 bytes long
f:\dd\vctools\vc7libs\ship\atlmfc\src\mfc\strcore.cpp(141) : {984} normal block at 0x02612668, 38 bytes long.
 Data: <<N x            > 3C 4E A4 78 15 00 00 00 15 00 00 00 01 00 00 00 
f:\dd\vctools\vc7libs\ship\atlmfc\src\mfc\strcore.cpp(141) : {980} normal block at 0x01B2E030, 29 bytes long.
 Data: <<N x            > 3C 4E A4 78 0C 00 00 00 0C 00 00 00 01 00 00 00

By setting {,,msvcr90d.dll}_crtBreakAlloc to 984 or 980 (these 2 numbers are always the same) during debugging, I get pointed to the place where I call EnableCustomizeButton(). Also, when I comment that line out, there is no more leak.

Any ideas what I'm doing wrong here?
In case it's really a bug in the framework, is there a workaround?

flag

2 Answers

vote up 0 vote down

Why don't you step into the MFC source and see what the framework does with the string?

link|flag
It's going quite deep into strcore.cpp and what happens there goes a bit beyond my knowledge of the MFC framework. – mxp Jul 2 at 13:00
I took a look at the afxtoolbar.cpp source. May be a bug in the teardown of the toolbar's button collection. Why don't you set some breakpoints in this file (EnableCustomizeButton, destructor, etc) see if you can narrow it down. – Aidan Ryan Jul 2 at 19:29
vote up 0 vote down

Seeing that EnableCustomizeButton() takes a reference to CString as a parameter, then the problem might be your local strCustomize. I might try to declare strCustomize as a member variable for the main frame class.

link|flag
Nope, that doesn't fix it. Also I believe that by giving it a reference to a local variable no memory leaks can occur. An access violation ould be possible in the unlikely case that the callee stored the address of the reference in a member variable for later use. – mxp Jun 30 at 8:24

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.