Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Steve Lhomme
VLC
Commits
8c046e25
Commit
8c046e25
authored
Oct 02, 2007
by
Rafaël Carré
Browse files
sap discovery: fix [22368] by using (int) casting on the unsigned size_t value
parent
78f088c0
Changes
1
Hide whitespace changes
Inline
Side-by-side
modules/services_discovery/sap.c
View file @
8c046e25
...
...
@@ -352,7 +352,7 @@ static int OpenDemux( vlc_object_t *p_this )
psz_sdp
=
psz_sdp_new
;
i_read
=
stream_Read
(
p_demux
->
s
,
&
psz_sdp
[
i_len
],
i_read_max
);
if
(
i_read
<
=
(
size_t
)
-
1
)
if
(
(
int
)
i_read
<
0
)
{
msg_Err
(
p_demux
,
"cannot read SDP"
);
goto
error
;
...
...
@@ -361,7 +361,7 @@ static int OpenDemux( vlc_object_t *p_this )
psz_sdp
[
i_len
]
=
'\0'
;
if
(
i_read
<
(
size_t
)
i_read_max
)
if
(
(
int
)
i_read
<
i_read_max
)
break
;
// EOF
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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