Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Xiph.Org
Icecast-Server
Commits
788bd94e
Commit
788bd94e
authored
Feb 13, 2016
by
Joseph Wallace
Committed by
Marvin Scholz
Feb 13, 2016
Browse files
BUGFIX: Use a signed type for capturing the return value of client_read_bytes()
Signed-off-by:
Marvin Scholz
<
epirat07@gmail.com
>
parent
3a73f9c1
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/format_ebml.c
View file @
788bd94e
...
...
@@ -286,11 +286,11 @@ static refbuf_t *ebml_get_buffer(source_t *source)
ebml_source_state_t
*
ebml_source_state
=
source
->
format
->
_state
;
format_plugin_t
*
format
=
source
->
format
;
unsigned
char
*
write_buffer
=
NULL
;
size
_t
read_bytes
=
0
;
ptrdiff
_t
read_bytes
=
0
;
size_t
write_bytes
=
0
;
ebml_chunk_type
chunk_type
;
refbuf_t
*
refbuf
;
size
_t
ret
;
ptrdiff
_t
ret
;
while
(
1
)
{
...
...
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