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?
