From: Tim Hudson Date: Mon, 5 May 2014 00:39:30 +0000 (+1000) Subject: PR#3342 fix resource leak coverity issue 966577 X-Git-Tag: OpenSSL_1_0_2-beta2~226 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=62cc5ff62303e97aeeab38e48b49d46c1e57ce98;p=openssl PR#3342 fix resource leak coverity issue 966577 --- diff --git a/apps/s_socket.c b/apps/s_socket.c index e0de63c8f1..a7fa28b7d9 100644 --- a/apps/s_socket.c +++ b/apps/s_socket.c @@ -274,7 +274,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