J
Jürgen Devlieghere
We encounter a crash every now and then at a client, and now I'm starting to
doubt the fundamentals of life
We have a list of structs.
struct SContactProperty
{
public:
SContactProperty(void) : m_strName(_T("")), m_strValue(_T("")),
m_bHidden(false) {};
tstring m_strName; //The name of the call property
tstring m_strValue; //The value of the call property
bool m_bHidden;
};
if we have 2 variables l1 and l2, both of type list<SContactProperty>, can
one then do simply:
l1=l2;
???
I ask because we put GlobalFlags on so that it crashes at the first memory
misusage. This helped us always in the past to pinpoint the any crash
immediately, but here it leads to such a line.
We used Visual Studio 6 SP6.
Jürgen Devlieghere
doubt the fundamentals of life
We have a list of structs.
struct SContactProperty
{
public:
SContactProperty(void) : m_strName(_T("")), m_strValue(_T("")),
m_bHidden(false) {};
tstring m_strName; //The name of the call property
tstring m_strValue; //The value of the call property
bool m_bHidden;
};
if we have 2 variables l1 and l2, both of type list<SContactProperty>, can
one then do simply:
l1=l2;
???
I ask because we put GlobalFlags on so that it crashes at the first memory
misusage. This helped us always in the past to pinpoint the any crash
immediately, but here it leads to such a line.
We used Visual Studio 6 SP6.
Jürgen Devlieghere