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