[reSIProcate] exception in DialogSet using uninitialized SharedPr

Justin Matthews jmatthewsr at yahoo.com
Wed Feb 1 15:23:09 CST 2006


Hello,

At approx line 321 in DialogSet.cxx, the following needs to be changed to
fix the exception:


SharedPtr<SipMessage> bye;
                  dialog.makeRequest(*bye, BYE);
                  dialog.send(bye);


SharedPtr<SipMessage> bye(new SipMessage);
                  dialog.makeRequest(*bye, BYE);
                  dialog.send(bye);

Thanks,

-Justin




More information about the resiprocate-devel mailing list