Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
BC
public
liblinphone
Commits
7c397eef
Commit
7c397eef
authored
Feb 16, 2018
by
Ghislain MARY
Browse files
Fix wifi, multicast and cpu locks being acquired instead of being released.
parent
573e8468
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
src/conference/session/call-session.cpp
src/conference/session/call-session.cpp
+3
-3
No files found.
src/conference/session/call-session.cpp
View file @
7c397eef
...
...
@@ -130,9 +130,9 @@ void CallSessionPrivate::setState (CallSession::State newState, const string &me
log
->
connected_date_time
=
ms_time
(
nullptr
);
break
;
case
CallSession
::
State
::
Released
:
getPlatformHelpers
(
q
->
getCore
()
->
getCCore
())
->
acquir
eWifiLock
();
getPlatformHelpers
(
q
->
getCore
()
->
getCCore
())
->
acquir
eMcastLock
();
getPlatformHelpers
(
q
->
getCore
()
->
getCCore
())
->
acquir
eCpuLock
();
getPlatformHelpers
(
q
->
getCore
()
->
getCCore
())
->
releas
eWifiLock
();
getPlatformHelpers
(
q
->
getCore
()
->
getCCore
())
->
releas
eMcastLock
();
getPlatformHelpers
(
q
->
getCore
()
->
getCCore
())
->
releas
eCpuLock
();
break
;
default:
break
;
...
...
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