Remove dead assignment in libscgi

This commit is contained in:
Travis Cross 2014-05-02 03:58:48 +00:00
parent 2b1ae831d1
commit ba84e1d8f9
1 changed files with 0 additions and 1 deletions

View File

@ -579,7 +579,6 @@ SCGI_DECLARE(scgi_status_t) scgi_bind(const char *host, scgi_port_t port, scgi_s
if (status == SCGI_FAIL) {
if (server_sock != SCGI_SOCK_INVALID) {
closesocket(server_sock);
server_sock = SCGI_SOCK_INVALID;
}
} else {
*socketp = server_sock;