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

* #10736: actions: fixed double free

parent de9e582a
Branches
Tags
No related merge requests found
...@@ -953,7 +953,6 @@ void sflphone_fill_call_list(void) ...@@ -953,7 +953,6 @@ void sflphone_fill_call_list(void)
gchar *callID = *calls; gchar *callID = *calls;
if (!calllist_get_call(current_calls_tab, callID)) { if (!calllist_get_call(current_calls_tab, callID)) {
callable_obj_t *c = create_new_call_from_details(*calls, dbus_get_call_details(*calls)); callable_obj_t *c = create_new_call_from_details(*calls, dbus_get_call_details(*calls));
g_free(callID);
c->_zrtp_confirmed = FALSE; c->_zrtp_confirmed = FALSE;
calllist_add_call(current_calls_tab, c); calllist_add_call(current_calls_tab, c);
if (!c->_confID || strlen(c->_confID) == 0) if (!c->_confID || strlen(c->_confID) == 0)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment