coverity 966576 - close socket in error path
authorTim Hudson <tjh@cryptsoft.com>
Mon, 5 May 2014 00:53:39 +0000 (10:53 +1000)
committerMatt Caswell <matt@openssl.org>
Thu, 8 May 2014 22:24:56 +0000 (23:24 +0100)
apps/s_socket.c

index 043c55e1ffc4eb299f01917d15776d8c0310e717..6aa126133dc20854206500f728e4e220b67fe939 100644 (file)
@@ -451,6 +451,7 @@ redoit:
                if ((*host=(char *)OPENSSL_malloc(strlen(h1->h_name)+1)) == NULL)
                        {
                        perror("OPENSSL_malloc");
+                       closesocket(ret);
                        return(0);
                        }
                BUF_strlcpy(*host,h1->h_name,strlen(h1->h_name)+1);
@@ -459,11 +460,13 @@ redoit:
                if (h2 == NULL)
                        {
                        BIO_printf(bio_err,"gethostbyname failure\n");
+                       closesocket(ret);
                        return(0);
                        }
                if (h2->h_addrtype != AF_INET)
                        {
                        BIO_printf(bio_err,"gethostbyname addr is not AF_INET\n");
+                       closesocket(ret);
                        return(0);
                        }
                }