Skip to content
Snippets Groups Projects
Commit 58a31825 authored by Tristan Matthews's avatar Tristan Matthews
Browse files

* #7126: fix segfault when recording conference

parent ad01a6bc
No related branches found
No related tags found
No related merge requests found
......@@ -2065,13 +2065,16 @@ void ManagerImpl::setRecordingCall (const std::string& id)
} else {
_debug ("Manager: Set recording for conference %s", id.c_str());
ConferenceMap::const_iterator it(_conferencemap.find(id));
Conference *conf = it->second;
if (rec->isRecording())
conf->setState(Conference::ACTIVE_ATTACHED);
else
conf->setState(Conference::ACTIVE_ATTACHED_REC);
rec = conf;
if (it != _conferencemap.end()) {
Conference *conf = it->second;
if (conf) {
rec = conf;
if (rec->isRecording())
conf->setState(Conference::ACTIVE_ATTACHED);
else
conf->setState(Conference::ACTIVE_ATTACHED_REC);
}
}
}
if (rec == NULL) {
......
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