Commit 8c046e25 authored by Rafaël Carré's avatar Rafaël Carré

sap discovery: fix [22368] by using (int) casting on the unsigned size_t value

parent 78f088c0
...@@ -352,7 +352,7 @@ static int OpenDemux( vlc_object_t *p_this ) ...@@ -352,7 +352,7 @@ static int OpenDemux( vlc_object_t *p_this )
psz_sdp = psz_sdp_new; psz_sdp = psz_sdp_new;
i_read = stream_Read( p_demux->s, &psz_sdp[i_len], i_read_max ); 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" ); msg_Err( p_demux, "cannot read SDP" );
goto error; goto error;
...@@ -361,7 +361,7 @@ static int OpenDemux( vlc_object_t *p_this ) ...@@ -361,7 +361,7 @@ static int OpenDemux( vlc_object_t *p_this )
psz_sdp[i_len] = '\0'; psz_sdp[i_len] = '\0';
if( i_read < (size_t)i_read_max ) if( (int)i_read < i_read_max )
break; // EOF break; // EOF
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment