Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
BC
public
liblinphone
Commits
583e5024
Commit
583e5024
authored
Sep 04, 2018
by
Erwan Croze
👋🏻
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix variable not init
parent
7e55281e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
src/conference/session/media-session.cpp
src/conference/session/media-session.cpp
+2
-2
No files found.
src/conference/session/media-session.cpp
View file @
583e5024
...
...
@@ -3149,7 +3149,7 @@ void MediaSessionPrivate::stopAudioStream () {
proxy
=
linphone_core_get_default_proxy_config
(
q
->
getCore
()
->
getCCore
());
// Get LIMEv2 context
LimeV2
*
limeV2Engine
;
LimeV2
*
limeV2Engine
=
nullptr
;
if
(
proxy
&&
linphone_core_lime_v2_enabled
(
linphone_proxy_config_get_core
(
proxy
)))
{
limeV2Engine
=
static_cast
<
LimeV2
*>
(
q
->
getCore
()
->
getEncryptionEngine
());
}
else
{
...
...
@@ -3595,7 +3595,7 @@ void MediaSessionPrivate::propagateEncryptionChanged () {
proxy
=
linphone_core_get_default_proxy_config
(
q
->
getCore
()
->
getCCore
());
// Get LIMEv2 context
LimeV2
*
limeV2Engine
;
LimeV2
*
limeV2Engine
=
nullptr
;
if
(
proxy
&&
linphone_core_lime_v2_enabled
(
linphone_proxy_config_get_core
(
proxy
)))
{
limeV2Engine
=
static_cast
<
LimeV2
*>
(
q
->
getCore
()
->
getEncryptionEngine
());
}
else
{
...
...
Write
Preview
Markdown
is supported
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