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
Merge requests
!1200
An error occurred while fetching the assigned milestone of the selected merge_request.
Fix crash when receiving a call with ICE, but not codecs are matching.
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Simon Morlat
requested to merge
fix/ice-no-matching-codec
into
release/4.5
3 years ago
Overview
0
Commits
1
Pipelines
0
Changes
1
0
0
Compare
release/4.5
version 1
168ef0b7
3 years ago
release/4.5 (base)
and
latest version
latest version
59378aa3
1 commit,
3 years ago
version 1
168ef0b7
1 commit,
3 years ago
1 file
+
2
−
0
Expand all files
Preferences
Preferences
File browser
List view
Tree view
Compare changes
Inline
Side-by-side
Show whitespace changes
Show one file at a time
src/conference/session/media-session.cpp
+
2
−
0
Options
View file @ 59378aa3
Edit in single-file editor
Open in Web IDE
Show full file
@@ -2369,6 +2369,8 @@ void MediaSession::initiateIncoming () {
*/
if
(
d
->
deferIncomingNotification
)
{
auto
incomingNotificationTask
=
[
d
](){
/* There is risk that the call can be terminated before this task is executed, for example if offer/answer fails.*/
if
(
d
->
state
!=
State
::
Idle
)
return
;
d
->
deferIncomingNotification
=
false
;
d
->
updateLocalMediaDescriptionFromIce
(
d
->
localIsOfferer
);
d
->
startIncomingNotification
();
Menu
Explore
Projects
Groups
Topics
Snippets