[reSIProcate] fault during shutdown in InviteSessionCreator.c xx

Scott Godin slgodin at icescape.com
Mon Jan 17 08:09:51 CST 2005


I just commited a fix - thanks.

Scott

-----Original Message-----
From: justin.matthews at ivr.com [mailto:justin.matthews at ivr.com] 
Sent: Friday, January 14, 2005 7:58 PM
To: resiprocate-devel at list.sipfoundry.org
Subject: [reSIProcate] fault during shutdown in InviteSessionCreator.cxx

Hello,	
	Dum will crash when calling shutdown if no offer has been created
for an initial dialog set.  This was tested by sending an INVITE request to
nowhere and then immediately shutting down the stack.  Could someone please
update svn?  
	The crash occurs in the destructor:

InviteSessionCreator::~InviteSessionCreator()
{
	delete mInitialOffer;
}

I fixed this by initializing mInitialOffer to NULL on construction and
adding the following on destruction:
--------------
InviteSessionCreator::InviteSessionCreator(DialogUsageManager& dum, 
                                           const NameAddr& target, 
                                           const NameAddr& from,
                                           const SdpContents* initial, 
                                           ServerSubscriptionHandle
serverSub)
   : BaseCreator(dum),
     mState(Initialized),
     mServerSub(serverSub),
     mInitialOffer(NULL)
{
---------------------
InviteSessionCreator::~InviteSessionCreator()
{	
    if( NULL != mInitialOffer )
    {
        delete mInitialOffer;
        mInitialOffer = NULL;
    }
}
----------------

Thanks,

Justin Matthews

_______________________________________________
resiprocate-devel mailing list
resiprocate-devel at list.sipfoundry.org
https://list.sipfoundry.org/mailman/listinfo/resiprocate-devel



More information about the resiprocate-devel mailing list