Click here to Skip to main content
15,914,013 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: "error LNK2001" on Release Build Pin
Laxman Auti11-Apr-06 18:20
Laxman Auti11-Apr-06 18:20 
GeneralRe: "error LNK2001" on Release Build Pin
murali197312-Apr-06 5:56
murali197312-Apr-06 5:56 
QuestionWin 32 DLL using .NET Pin
act_x11-Apr-06 13:16
act_x11-Apr-06 13:16 
AnswerRe: Win 32 DLL using .NET Pin
Ștefan-Mihai MOGA11-Apr-06 20:29
professionalȘtefan-Mihai MOGA11-Apr-06 20:29 
AnswerRe: Displaying HTML/web content within C++ app (no MFC) Pin
Stephen Hewitt11-Apr-06 15:49
Stephen Hewitt11-Apr-06 15:49 
GeneralRe: Displaying HTML/web content within C++ app (no MFC) Pin
chasetoys11-Apr-06 17:07
chasetoys11-Apr-06 17:07 
Questionsocket question Pin
nahitan11-Apr-06 11:02
nahitan11-Apr-06 11:02 
QuestionMemory Leak using Bounds checker Pin
act_x11-Apr-06 10:11
act_x11-Apr-06 10:11 
for pointer variables defined globally say CmemObject *pMem = NULL


For a class CMyClass


CMyClass::Init()
{
pMem = new CMemObject();

}




CMyClass :: ~CMyClass()
{
if(pMem)
{
delete pMem;
pMem = NULL ;
}

}


Still shows a leak where the new operator is called .
Is it safe to ignore this error as I am finally de allocating it ?

AnswerRe: Memory Leak using Bounds checker Pin
S. Senthil Kumar11-Apr-06 10:29
S. Senthil Kumar11-Apr-06 10:29 
GeneralRe: Memory Leak using Bounds checker Pin
act_x11-Apr-06 10:49
act_x11-Apr-06 10:49 
AnswerRe: Memory Leak using Bounds checker Pin
Joe Woodbury11-Apr-06 11:40
professionalJoe Woodbury11-Apr-06 11:40 
Question"LNK2001: unresolved external symbol" Error Pin
capricious_00111-Apr-06 9:57
capricious_00111-Apr-06 9:57 
AnswerRe: "LNK2001: unresolved external symbol" Error Pin
Joe Woodbury11-Apr-06 10:08
professionalJoe Woodbury11-Apr-06 10:08 
GeneralRe: "LNK2001: unresolved external symbol" Error Pin
capricious_00111-Apr-06 10:16
capricious_00111-Apr-06 10:16 
QuestionTo Jochen Kalmbach, Reg Stack Walker Pin
psbasha11-Apr-06 7:54
psbasha11-Apr-06 7:54 
QuestionRe: To Jochen Kalmbach, Reg Stack Walker Pin
David Crow11-Apr-06 8:18
David Crow11-Apr-06 8:18 
AnswerRe: To Jochen Kalmbach, Reg Stack Walker Pin
psbasha11-Apr-06 8:45
psbasha11-Apr-06 8:45 
QuestionRe: To Jochen Kalmbach, Reg Stack Walker Pin
David Crow11-Apr-06 8:48
David Crow11-Apr-06 8:48 
AnswerRe: To Jochen Kalmbach, Reg Stack Walker Pin
psbasha11-Apr-06 9:13
psbasha11-Apr-06 9:13 
AnswerRe: To Jochen Kalmbach, Reg Stack Walker Pin
ThatsAlok11-Apr-06 8:48
ThatsAlok11-Apr-06 8:48 
GeneralRe: To Jochen Kalmbach, Reg Stack Walker Pin
psbasha11-Apr-06 9:15
psbasha11-Apr-06 9:15 
GeneralRe: To Jochen Kalmbach, Reg Stack Walker Pin
David Crow11-Apr-06 10:31
David Crow11-Apr-06 10:31 
GeneralRe: To Jochen Kalmbach, Reg Stack Walker Pin
psbasha12-Apr-06 5:19
psbasha12-Apr-06 5:19 
QuestionTreeCtrl - begin lable edit notify Pin
CodeGoose11-Apr-06 6:29
CodeGoose11-Apr-06 6:29 
AnswerRe: TreeCtrl - begin lable edit notify Pin
CodeGoose11-Apr-06 6:44
CodeGoose11-Apr-06 6:44 

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.