Commit b0e5abcd authored by Ilkka Ollakka's avatar Ilkka Ollakka

udp: restore original flow without else block

commit 7fff679f added else block and
left continue that didn't make code flow following any easier.
parent 2ba75ec6
...@@ -264,10 +264,10 @@ static void* ThreadRead( void *data ) ...@@ -264,10 +264,10 @@ static void* ThreadRead( void *data )
if( errno == EINTR ) if( errno == EINTR )
break; break;
continue; continue;
} else {
pkt->i_buffer = len;
block_FifoPut( sys->fifo, pkt );
} }
pkt->i_buffer = len;
block_FifoPut( sys->fifo, pkt );
} }
block_FifoWake( sys->fifo ); block_FifoWake( sys->fifo );
......
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