Skip to content
Snippets Groups Projects
Commit af6ac9b7 authored by Mohamed Chibani's avatar Mohamed Chibani Committed by Sébastien Blin
Browse files

SipVoipLink: prevent a crash at shutdown

SipVoipLink may never be intialized in Manager instance (Manager::init())
leading to a crash when the Manager calls finish(). Added a check
to prevent the crash.

Gitlab: #481

Change-Id: I817a7795ce4341e6214a44e46037b0183fde53c5
parent 8faa52ae
No related branches found
No related tags found
No related merge requests found
......@@ -888,8 +888,10 @@ Manager::finish() noexcept
// NOTE: sipLink_->shutdown() is needed because this will perform
// sipTransportBroker->shutdown(); which will call Manager::instance().sipVoIPLink()
// so the pointer MUST NOT be resetted at this point
pimpl_->sipLink_->shutdown();
pimpl_->sipLink_.reset();
if (pimpl_->sipLink_) {
pimpl_->sipLink_->shutdown();
pimpl_->sipLink_.reset();
}
pj_shutdown();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment