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,11 +264,11 @@ static void* ThreadRead( void *data )
if( errno == EINTR )
break;
continue;
} else {
}
pkt->i_buffer = len;
block_FifoPut( sys->fifo, pkt );
}
}
block_FifoWake( sys->fifo );
return 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