Click here to Skip to main content
15,888,401 members
Home / Discussions / ATL / WTL / STL
   

ATL / WTL / STL

 
GeneralRe: STL List - object creation / destruction wierdness Pin
Stuart Dootson8-Sep-06 3:01
professionalStuart Dootson8-Sep-06 3:01 
GeneralRe: STL List - object creation / destruction wierdness Pin
Zac Howland8-Sep-06 3:57
Zac Howland8-Sep-06 3:57 
GeneralRe: STL List - object creation / destruction wierdness Pin
Stuart Dootson8-Sep-06 5:48
professionalStuart Dootson8-Sep-06 5:48 
GeneralRe: STL List - object creation / destruction wierdness Pin
Zac Howland8-Sep-06 6:06
Zac Howland8-Sep-06 6:06 
QuestionRelease build seg faults at vector push_back Pin
rana745-Sep-06 6:38
rana745-Sep-06 6:38 
AnswerRe: Release build seg faults at vector push_back Pin
led mike5-Sep-06 6:55
led mike5-Sep-06 6:55 
AnswerRe: Release build seg faults at vector push_back Pin
valikac5-Sep-06 8:12
valikac5-Sep-06 8:12 
AnswerRe: Release build seg faults at vector push_back Pin
Zac Howland7-Sep-06 9:27
Zac Howland7-Sep-06 9:27 
This is usually a sign that you have some memory issues elsewhere in your code. Debug builds allocate extra space before and after sections of memory to help indicate if you have any buffer overrun issues. Release builds don't have that, so if you do have such a problem, you will corrupt memory rather quickly. Things to look for are the constructor of the EMEventContainer object, its copy constructor, its copy assignment operator, any heap allocations within that class, and if you are using multiple threads, any unprotected accesses to an STL container.

If you decide to become a software engineer, you are signing up to have a 1/2" piece of silicon tell you exactly how stupid you really are for 8 hours a day, 5 days a week

Zac

QuestionIs it possible to convert Visual C++ program with GUI into COM DLL or ActiveX ? Pin
peysock5-Sep-06 6:35
peysock5-Sep-06 6:35 
AnswerRe: Is it possible to convert Visual C++ program with GUI into COM DLL or ActiveX ? Pin
Kevin McFarlane6-Sep-06 5:17
Kevin McFarlane6-Sep-06 5:17 
AnswerRe: Is it possible to convert Visual C++ program with GUI into COM DLL or ActiveX ? Pin
Zac Howland7-Sep-06 9:31
Zac Howland7-Sep-06 9:31 
GeneralRe: Is it possible to convert Visual C++ program with GUI into COM DLL or ActiveX ? Pin
peysock8-Sep-06 3:34
peysock8-Sep-06 3:34 
Questioniterator problem in release builds Pin
rana745-Sep-06 1:24
rana745-Sep-06 1:24 
QuestionRe: iterator problem in release builds Pin
prasad_som5-Sep-06 1:54
prasad_som5-Sep-06 1:54 
Question#define for checked-iterators Pin
rana744-Sep-06 0:10
rana744-Sep-06 0:10 
AnswerRe: #define for checked-iterators Pin
User 2155974-Sep-06 1:30
User 2155974-Sep-06 1:30 
QuestionATL inheritance Pin
palako2-Sep-06 11:18
palako2-Sep-06 11:18 
AnswerRe: ATL inheritance Pin
Steve S7-Sep-06 3:10
Steve S7-Sep-06 3:10 
Questionhow i block the e-mail attachment in VC++? Pin
salman kazi31-Aug-06 0:30
salman kazi31-Aug-06 0:30 
AnswerRe: how i block the e-mail attachment in VC++? Pin
prasad_som31-Aug-06 3:51
prasad_som31-Aug-06 3:51 
QuestionSelecting an item in listview via windows api. Pin
Marco225030-Aug-06 2:17
Marco225030-Aug-06 2:17 
AnswerRe: Selecting an item in listview via windows api. Pin
Steve S30-Aug-06 7:05
Steve S30-Aug-06 7:05 
AnswerRe: Selecting an item in listview via windows api. Pin
Michael Dunn30-Aug-06 20:30
sitebuilderMichael Dunn30-Aug-06 20:30 
GeneralRe: Selecting an item in listview via windows api. Pin
svsundar (Vairavan)31-Aug-06 2:56
svsundar (Vairavan)31-Aug-06 2:56 
GeneralRe: Selecting an item in listview via windows api. Pin
Michael Dunn31-Aug-06 18:48
sitebuilderMichael Dunn31-Aug-06 18:48 

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.