Original Post
I''m getting the following memory leak:
Detected memory leaks!
Dumping objects ->
{42} normal block at 0x003607B8, 12 bytes long.
Data: < 6 6 > B8 07 36 00 B8 07 36 00 CD CD CD CD
Object dump complete.
And I can''t figure out what it''s coming from. I tried to start my winmain like this:
int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int nCmdShow)
{
_CrtSetBreakAlloc(42);
and then I ran in debug, but no breakpoint was ever set... is there any other way to find the source?