git.videolan.org
/
vlc.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
320fb45
)
sap discovery: (size_t) casting
author
Rafaël Carré
<funman@videolan.org>
Mon, 1 Oct 2007 21:28:36 +0000
(21:28 +0000)
committer
Rafaël Carré
<funman@videolan.org>
Mon, 1 Oct 2007 21:28:36 +0000
(21:28 +0000)
modules/services_discovery/sap.c
patch
|
blob
|
history
diff --git
a/modules/services_discovery/sap.c
b/modules/services_discovery/sap.c
index
18c0626
..
b91dcd5
100644
(file)
--- a/
modules/services_discovery/sap.c
+++ b/
modules/services_discovery/sap.c
@@
-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 <
0
)
+ if( i_read <
= (size_t)-1
)
{
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 < i_read_max )
+ if( i_read <
(size_t)
i_read_max )
break; // EOF
}