Commit 4c654c6a authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

udp: remove impossible case

EOF is never set in this plugin.
parent c16bc980
......@@ -202,9 +202,6 @@ static block_t *BlockUDP( access_t *p_access )
block_t *p_block;
ssize_t len;
if( p_access->info.b_eof )
return NULL;
/* Read data */
p_block = block_Alloc( MTU );
len = net_Read( p_access, (intptr_t)p_sys, NULL,
......
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