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
95c08345
Commit
95c08345
authored
Sep 09, 2014
by
Gautier Pelloux-Prayer
Browse files
Fix invalid read in quality reporting if call was already released
parent
b34d5bd9
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
coreapi/quality_reporting.c
coreapi/quality_reporting.c
+1
-1
No files found.
coreapi/quality_reporting.c
View file @
95c08345
...
...
@@ -654,7 +654,7 @@ int linphone_reporting_publish_interval_report(LinphoneCall* call) {
void
linphone_reporting_call_state_updated
(
LinphoneCall
*
call
){
LinphoneCallState
state
=
linphone_call_get_state
(
call
);
if
(
!
quality_reporting_enabled
(
call
)){
if
(
state
==
LinphoneCallReleased
||
!
quality_reporting_enabled
(
call
)){
return
;
}
switch
(
state
){
...
...
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