[reSIProcate] terminated in TuSelector::exists(TransactionUser* tu)?
I have ported the Resiprocate to the wince using vs2005 beta2, have generated
the dum.lib,
but when I run the test example "basicRegister",it fails.
I track the log,found that It only prints the "exits1", then terminated .
bool
TuSelector::exists(TransactionUser* tu)
{
InfoLog(<<"exits1");/////////////////////////////////
for(TuList::iterator it = mTuList.begin(); it != mTuList.end(); it++)
{
InfoLog(<<"exits2");////////////////////////
if (it->tu == tu)
{
InfoLog(<<"exits3");////////////////////////
return true;
}
}
InfoLog(<<"exits4");/////////////////////////
return false;
}
Could you give me some advice to slove the problem?