Skip to content

Commit

Permalink
Merge pull request #107 from daurnimator/master
Browse files Browse the repository at this point in the history
src/usocket: Do not setblocking on destory;
  • Loading branch information
diegonehab committed Oct 27, 2014
2 parents d80bb0d + d33c031 commit e011078
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/usocket.c
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,6 @@ int socket_close(void) {
\*-------------------------------------------------------------------------*/
void socket_destroy(p_socket ps) {
if (*ps != SOCKET_INVALID) {
socket_setblocking(ps);
close(*ps);
*ps = SOCKET_INVALID;
}
Expand Down

0 comments on commit e011078

Please sign in to comment.