Click here to Skip to main content
15,886,689 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: To construct a C++ code from a given Visual Basic String. Pin
Cedric Moonen1-Oct-09 0:07
Cedric Moonen1-Oct-09 0:07 
GeneralRe: To construct a C++ code from a given Visual Basic String. Pin
Vishrant Shah1-Oct-09 0:14
Vishrant Shah1-Oct-09 0:14 
GeneralRe: To construct a C++ code from a given Visual Basic String. Pin
Cedric Moonen1-Oct-09 0:18
Cedric Moonen1-Oct-09 0:18 
GeneralRe: To construct a C++ code from a given Visual Basic String. Pin
Vishrant Shah1-Oct-09 0:41
Vishrant Shah1-Oct-09 0:41 
GeneralRe: To construct a C++ code from a given Visual Basic String. Pin
Richard MacCutchan1-Oct-09 0:50
mveRichard MacCutchan1-Oct-09 0:50 
GeneralRe: To construct a C++ code from a given Visual Basic String. Pin
CPallini1-Oct-09 2:01
mveCPallini1-Oct-09 2:01 
AnswerRe: To construct a C++ code from a given Visual Basic String. Pin
CPallini30-Sep-09 23:20
mveCPallini30-Sep-09 23:20 
Questionvery strange memory problem ....please help Pin
dharani30-Sep-09 22:38
dharani30-Sep-09 22:38 
Hello all
Though its linux problem I thought I will give a try to my age old forum as the problem seems to be typical memory management ...ok here I go ..

We have a class which has members listed as below in the declaration


class SOAP_CMAC MyUserProfile
{
public:
std::string name;
std::string name2;
std::string firstName;
public:
LONG64 pwdStatus;
std::string setType;
public:
class NotifyOptions *mNotifyOptions;
LONG64 USCOREtype;
std::string USCOREmacAddress;
std::string USCOREipAddress;
public:
MyUserProfile() { }
virtual ~MyUserProfile() { }
};


In the run time after object for MyUserProfile is created , reference to std::strings USCOREmacAddress and USCOREipAddress are crashing due to segmentation fault!
The lines which crash due to segmentation fault are doing an assign operation
USCOREmacAddress.assign(“char string”);

But reference to std::strings name , name2 , firstName and settype do not crash .

Upon observation I found that the line class NotifyOptions *mNotifyOptions is in between the two sections . So I moved the line class NotifyOptions *mNotifyOptions ; to the end of the class declaration . This made the reference to name , name2 , firstName , settype also to crash !!! . It seems this object mNotifyOptions which will be created at run time is somehow the reason for the crash happening on std::string objects ….But I am at wits end to know what it is and how to solve it …

The point is : we migrated from gcc library 2.4. to 2.6 . And after this this problem surfaced without any modifications in the code present in both situations ….

Any help guys on this problem ?

with warm regards

redindian

AnswerRe: very strange memory problem ....please help Pin
Hans Dietrich30-Sep-09 23:12
mentorHans Dietrich30-Sep-09 23:12 
AnswerRe: very strange memory problem ....please help Pin
KarstenK30-Sep-09 23:19
mveKarstenK30-Sep-09 23:19 
GeneralRe: very strange memory problem ....please help Pin
dharani30-Sep-09 23:39
dharani30-Sep-09 23:39 
GeneralRe: very strange memory problem ....please help Pin
KarstenK1-Oct-09 0:33
mveKarstenK1-Oct-09 0:33 
AnswerRe: very strange memory problem ....please help Pin
TimothyPMoore1-Oct-09 2:38
TimothyPMoore1-Oct-09 2:38 
QuestionRe: very strange memory problem ....please help Pin
David Crow1-Oct-09 3:23
David Crow1-Oct-09 3:23 
QuestionExcluive low-level access to a disk Pin
mooromets_ua30-Sep-09 21:48
mooromets_ua30-Sep-09 21:48 
QuestionCreate Multipage Images Pin
Game-point30-Sep-09 20:37
Game-point30-Sep-09 20:37 
AnswerRe: Create Multipage Images Pin
Rajesh R Subramanian30-Sep-09 21:55
professionalRajesh R Subramanian30-Sep-09 21:55 
GeneralRe: Create Multipage Images Pin
Game-point1-Oct-09 0:09
Game-point1-Oct-09 0:09 
AnswerRe: Create Multipage Images Pin
CPallini30-Sep-09 22:27
mveCPallini30-Sep-09 22:27 
AnswerRe: Create Multipage Images Pin
Game-point30-Sep-09 22:46
Game-point30-Sep-09 22:46 
AnswerRe: Create Multipage Images Pin
Hamid_RT1-Oct-09 1:15
Hamid_RT1-Oct-09 1:15 
GeneralRe: Create Multipage Images Pin
Game-point1-Oct-09 1:49
Game-point1-Oct-09 1:49 
GeneralRe: Create Multipage Images Pin
Hamid_RT1-Oct-09 2:40
Hamid_RT1-Oct-09 2:40 
QuestionRecognize smart card reader type using winscard visual C++ 6.0 Pin
Eka Candra30-Sep-09 19:54
Eka Candra30-Sep-09 19:54 
QuestionRecognize smart card reader type using winscard visual C++ 6.0 Pin
Eka Candra30-Sep-09 19:52
Eka Candra30-Sep-09 19:52 

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.