Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
savoirfairelinux
jami-daemon
Commits
8a7f966a
Commit
8a7f966a
authored
Apr 20, 2010
by
Alexandre Savard
Browse files
[#3247] Fix segfault in conference hangup
parent
0de37b81
Changes
1
Hide whitespace changes
Inline
Side-by-side
sflphone-client-gnome/src/dbus/dbus.c
View file @
8a7f966a
...
...
@@ -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
);
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment