-----------------------------------------------------------

New Message on BDOTNET

-----------------------------------------------------------
From: spark
Message 1 in Discussion

This would work .... to a large extent...

#define CRTDBG_MAP_ALLOC
#include <stdlib.h>
#include <crtdbg.h>


int main(int argc, char* argv[])
{
        int * a = new int[1];
        _CrtDumpMemoryLeaks();
        return 0;
}

And when run under the debugger would display (on exit):

        Detected memory leaks!
        Dumping objects ->
        {46} normal block at 0x002F0FF0, 4 bytes long.
         Data: <    > CD CD CD CD 
        Object dump complete.
        The program '[2812] memleaks.exe: Native' has exited with code 0
(0x0).

now comes the tricky part ... :)
rosh
 

Memory leak detection with VS ?
From: mail2dolly 

Rosh, have you seen this? Its a MSDN article on the same :
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/vsdebug
/html/vxconenablingmemoryleakdetection.asp

Dolly


-----------------------------------------------------------

To stop getting this e-mail, or change how often it arrives, go to your E-mail 
Settings.
http://groups.msn.com/BDOTNET/_emailsettings.msnw

Need help? If you've forgotten your password, please go to Passport Member Services.
http://groups.msn.com/_passportredir.msnw?ppmprop=help

For other questions or feedback, go to our Contact Us page.
http://groups.msn.com/contact

If you do not want to receive future e-mail from this MSN group, or if you received 
this message by mistake, please click the "Remove" link below. On the pre-addressed 
e-mail message that opens, simply click "Send". Your e-mail address will be deleted 
from this group's mailing list.
mailto:[EMAIL PROTECTED]

Reply via email to