1
mirror of https://code.videolan.org/videolan/vlc synced 2024-09-12 13:44:56 +02:00

http: remove no-op

This commit is contained in:
Rémi Denis-Courmont 2015-12-16 19:48:00 +02:00
parent 3daad56c16
commit 4b7e668f97

View File

@ -653,19 +653,6 @@ static ssize_t Read( access_t *p_access, uint8_t *p_buffer, size_t i_len )
if( i_read == 0 )
{
/*
* I very much doubt that this will work.
* If i_read == 0, the connection *IS* dead, so the only
* sensible thing to do is Disconnect() and then retry.
* Otherwise, I got recv() completely wrong. -- Courmisch
*/
if( p_sys->b_continuous )
{
Request( p_access, 0 );
p_sys->b_continuous = false;
i_read = Read( p_access, p_buffer, i_len );
p_sys->b_continuous = true;
}
Disconnect( p_access );
if( p_sys->b_reconnect )
{