Commit 3ea3b8df authored by 冉正源's avatar 冉正源

I think that the socket is invalid, the return should be -1.

parent 6a46244a
...@@ -769,7 +769,7 @@ int ns_server_poll(struct ns_server *server, int milli) { ...@@ -769,7 +769,7 @@ int ns_server_poll(struct ns_server *server, int milli) {
time_t current_time = time(NULL); time_t current_time = time(NULL);
if (server->listening_sock == INVALID_SOCKET && if (server->listening_sock == INVALID_SOCKET &&
server->active_connections == NULL) return 0; server->active_connections == NULL) return -1;
FD_ZERO(&read_set); FD_ZERO(&read_set);
FD_ZERO(&write_set); FD_ZERO(&write_set);
......
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