Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Steve Lhomme
VLC
Commits
f6b814ba
Commit
f6b814ba
authored
Nov 05, 2006
by
Rémi Denis-Courmont
Browse files
Suppress bogus extraneous boundary check
parent
acefb78d
Changes
1
Show whitespace changes
Inline
Side-by-side
src/stream_output/sap.c
View file @
f6b814ba
...
...
@@ -664,7 +664,7 @@ static int CalculateRate( sap_handler_t *p_sap, sap_address_t *p_address )
i_read
=
net_ReadNonBlock
(
p_sap
,
p_address
->
i_rfd
,
NULL
,
buffer
,
SAP_MAX_BUFFER
,
0
);
i_tot
+=
i_read
;
}
while
(
i_read
>
0
&&
i_tot
<
SAP_MAX_BUFFER
);
}
while
(
i_read
>
0
);
i_temp
=
mdate
();
...
...
Write
Preview
Supports
Markdown
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