Skip to content
GitLab
Explore
Projects
Groups
Topics
Snippets
Projects
Groups
Topics
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
BC
public
liblinphone
Commits
bacf3bbc
Commit
bacf3bbc
authored
14 years ago
by
Simon Morlat
Browse files
Options
Download
Patches
Plain Diff
fix bug with SalMediaDescription not ref'd
parent
6d7bf231
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
coreapi/callbacks.c
+5
-2
coreapi/callbacks.c
with
5 additions
and
2 deletions
coreapi/callbacks.c
+
5
−
2
View file @
bacf3bbc
...
...
@@ -227,8 +227,11 @@ static void call_updated(SalOp *op){
if
(
call
->
resultdesc
)
sal_media_description_unref
(
call
->
resultdesc
);
call
->
resultdesc
=
sal_call_get_final_media_description
(
op
);
if
(
call
->
resultdesc
&&
!
sal_media_description_empty
(
call
->
resultdesc
)){
linphone_connect_incoming
(
lc
,
call
);
if
(
call
->
resultdesc
){
sal_media_description_ref
(
call
->
resultdesc
);
if
(
sal_media_description_empty
(
call
->
resultdesc
)){
linphone_connect_incoming
(
lc
,
call
);
}
}
}
...
...
This diff is collapsed.
Click to expand it.
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment
Menu
Explore
Projects
Groups
Topics
Snippets