< Previous by Date Date Index Next by Date >
  Thread Index Next in Thread >

[reSIProcate] wince - testUri Not successfull


Hello

 

I had ported reciprocate on wince. And run one by one test program. testUri create crash on ARMV4 wince. it create problem in the copy constructor.

 

Uri::Uri(const Uri& rhs)

   : ParserCategory(rhs),

     mScheme(rhs.mScheme),

     mHost(rhs.mHost),

     mUser(rhs.mUser),

     mUserParameters(rhs.mUserParameters),

     mPort(rhs.mPort),

     mPassword(rhs.mPassword),

     mOldPort(0),

     mEmbeddedHeadersText(rhs.mEmbeddedHeadersText),

     mEmbeddedHeaders(rhs.mEmbeddedHeaders ? new SipMessage(*rhs.mEmbeddedHeaders) : 0)

{}

 

When it calls one time it will create no crash. But at second time it will create crash. What can I do ? here I paste my logs….

 

DEBUG | H


.000 | uritest | RESIP | 3876337306 | uri.cxx:58 | uri copy constructor is calleded

DEBUG | H


.000 | uritest | RESIP | 3876337306 | uri.cxx:75 | end of cunstructer

DEBUG | H


.000 | uritest | RESIP | 3876337306 | uri.cxx:58 | uri copy constructor is calleded

DEBUG | H


.000 | uritest | RESIP | 3876337306 | uri.cxx:75 | end of constructer

 

Here I put my own logs of copy constructor. So after the second copy it gonna crash what can I do for this problem ?

 

Regards,

Shailesh