summaryrefslogtreecommitdiffstats
path: root/apps/s_socket.c
diff options
context:
space:
mode:
authorTim Hudson <tjh@cryptsoft.com>2014-05-05 10:39:30 +1000
committerMatt Caswell <matt@openssl.org>2014-05-08 23:24:51 +0100
commit51080676f1dff55986d7171d93d88ae267c5dd44 (patch)
treeeba2e64bdbdeccea34b0a5fac8a2f55464a7a8c1 /apps/s_socket.c
parent1535ff91e1d7151b704241489189b0b02fe5587e (diff)
PR#3342 fix resource leak coverity issue 966577
Diffstat (limited to 'apps/s_socket.c')
-rw-r--r--apps/s_socket.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/s_socket.c b/apps/s_socket.c
index c08544a13c..043c55e1ff 100644
--- a/apps/s_socket.c
+++ b/apps/s_socket.c
@@ -275,7 +275,7 @@ static int init_client_ip(int *sock, unsigned char ip[4], int port, int type)
{
i=0;
i=setsockopt(s,SOL_SOCKET,SO_KEEPALIVE,(char *)&i,sizeof(i));
- if (i < 0) { perror("keepalive"); return(0); }
+ if (i < 0) { closesocket(s); perror("keepalive"); return(0); }
}
#endif