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
mediastreamer2
Commits
9eeb8b1c
Commit
9eeb8b1c
authored
Jun 02, 2014
by
Gautier Pelloux-Prayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix crash in qos stateful analyser when there is nothing to smooth
parent
124f6c61
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
0 deletions
+6
-0
src/voip/qosanalyzer.c
src/voip/qosanalyzer.c
+6
-0
No files found.
src/voip/qosanalyzer.c
View file @
9eeb8b1c
...
...
@@ -356,6 +356,12 @@ static void smooth_values(MSStatefulQosAnalyser *obj){
}
else
{
it
=
first_loss
;
}
/*nothing to smooth*/
if
(
it
==
NULL
){
return
;
}
curr
=
(
rtcpstatspoint_t
*
)
it
->
data
;
while
(
it
->
next
!=
NULL
){
...
...
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