Skip to content
Snippets Groups Projects
Commit 8a7f966a authored by Alexandre Savard's avatar Alexandre Savard
Browse files

[#3247] Fix segfault in conference hangup

parent 0de37b81
No related branches found
No related tags found
No related merge requests found
......@@ -297,12 +297,13 @@ conference_removed_cb(DBusGProxy *proxy UNUSED, const gchar* confID, void * foo
while(participant) {
call = calllist_get(current_calls, (const gchar *)(participant->data));
DEBUG("DBUS: Remove participant %s", call->_callID);
if(call->_confID){
g_free(call->_confID);
call->_confID = NULL;
if(call) {
DEBUG("DBUS: Remove participant %s", call->_callID);
if(call->_confID){
g_free(call->_confID);
call->_confID = NULL;
}
}
participant = conference_next_participant(participant);
}
......
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