Click here to Skip to main content
15,895,871 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: win32 exe memory usage issue Pin
Rolf Kristensen18-Apr-09 0:46
Rolf Kristensen18-Apr-09 0:46 
AnswerRe: win32 exe memory usage issue Pin
_AnsHUMAN_ 17-Apr-09 1:36
_AnsHUMAN_ 17-Apr-09 1:36 
GeneralRe: win32 exe memory usage issue Pin
Ash_VCPP17-Apr-09 2:29
Ash_VCPP17-Apr-09 2:29 
QuestionRe: win32 exe memory usage issue Pin
Rajesh R Subramanian17-Apr-09 1:45
professionalRajesh R Subramanian17-Apr-09 1:45 
AnswerRe: win32 exe memory usage issue Pin
Ash_VCPP17-Apr-09 1:51
Ash_VCPP17-Apr-09 1:51 
GeneralRe: win32 exe memory usage issue Pin
Luc Pattyn17-Apr-09 1:57
sitebuilderLuc Pattyn17-Apr-09 1:57 
GeneralRe: win32 exe memory usage issue Pin
Ash_VCPP17-Apr-09 2:01
Ash_VCPP17-Apr-09 2:01 
AnswerRe: win32 exe memory usage issue Pin
Rajesh R Subramanian17-Apr-09 2:27
professionalRajesh R Subramanian17-Apr-09 2:27 
Ash_VCPP wrote:
{62} normal block at 0x008C14B0, 33 bytes long.
Data: < C > 00 43 00 CD CD CD CD CD CD CD CD CD CD CD CD CD
{61} normal block at 0x008C1500, 40 bytes long.
Data: < |L > 14 7C 4C 10 16 00 00 00 00 00 00 00 00 00 00 00
{59} client block at 0x008C1610, subtype 0, 64 bytes long.


There are probably source files where new isn't redefined to DEBUG_NEW (probably you added some C/C++ files yourself?). Try to add this definition to all the source files where it isn't present:
#ifdef _DEBUG
#define new DEBUG_NEW
#endif

This will enable the debugger to display the exact line numbers in your program where there were memory allocations (that weren't cleaned up).

Ash_VCPP wrote:
but i dont have strcore.cpp file in my workspace and i dont understand the meaning of other errors....


Leaks at strcore.cpp most likely means that you are misusing strings in your program (improper shutdown/termination of a thread that was using strings?). That becomes too much of a big topic to discuss in a reply.


It is a crappy thing, but it's life -^ Carlo Pallini

AnswerRe: win32 exe memory usage issue Pin
China_Kevin17-Apr-09 2:39
China_Kevin17-Apr-09 2:39 
Questionduration of AAC audio Pin
yuanfen13917-Apr-09 0:55
yuanfen13917-Apr-09 0:55 
QuestionInclude Header file at run time. Pin
002comp17-Apr-09 0:34
002comp17-Apr-09 0:34 
AnswerRe: Include Header file at run time. Pin
Cedric Moonen17-Apr-09 0:55
Cedric Moonen17-Apr-09 0:55 
GeneralRe: Include Header file at run time. Pin
002comp17-Apr-09 1:05
002comp17-Apr-09 1:05 
GeneralRe: Include Header file at run time. Pin
Stuart Dootson17-Apr-09 1:09
professionalStuart Dootson17-Apr-09 1:09 
GeneralRe: Include Header file at run time. Pin
002comp17-Apr-09 1:26
002comp17-Apr-09 1:26 
GeneralRe: Include Header file at run time. Pin
Stuart Dootson17-Apr-09 1:51
professionalStuart Dootson17-Apr-09 1:51 
GeneralRe: Include Header file at run time. Pin
Cedric Moonen17-Apr-09 1:11
Cedric Moonen17-Apr-09 1:11 
GeneralRe: Include Header file at run time. Pin
Cedric Moonen17-Apr-09 2:00
Cedric Moonen17-Apr-09 2:00 
GeneralRe: Include Header file at run time. Pin
002comp17-Apr-09 2:17
002comp17-Apr-09 2:17 
GeneralRe: Include Header file at run time. Pin
Cedric Moonen17-Apr-09 2:30
Cedric Moonen17-Apr-09 2:30 
GeneralRe: Include Header file at run time. Pin
zhanzongru19-Apr-09 1:27
zhanzongru19-Apr-09 1:27 
QuestionZip Folder Pin
Davitor17-Apr-09 0:20
Davitor17-Apr-09 0:20 
AnswerRe: Zip Folder Pin
Hamid_RT17-Apr-09 0:27
Hamid_RT17-Apr-09 0:27 
GeneralRe: Zip Folder Pin
Davitor17-Apr-09 1:09
Davitor17-Apr-09 1:09 
GeneralRe: Zip Folder Pin
Rajesh R Subramanian17-Apr-09 3:42
professionalRajesh R Subramanian17-Apr-09 3:42 

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

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