You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by tr...@apache.org on 2013/10/23 03:25:05 UTC

svn commit: r1534890 - /httpd/httpd/trunk/modules/ssl/ssl_util_ocsp.c

Author: trawick
Date: Wed Oct 23 01:25:05 2013
New Revision: 1534890

URL: http://svn.apache.org/r1534890
Log:
axe attempt to close a previously-closed or uninitialized apr socket (clang scan-build)

Modified:
    httpd/httpd/trunk/modules/ssl/ssl_util_ocsp.c

Modified: httpd/httpd/trunk/modules/ssl/ssl_util_ocsp.c
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/modules/ssl/ssl_util_ocsp.c?rev=1534890&r1=1534889&r2=1534890&view=diff
==============================================================================
--- httpd/httpd/trunk/modules/ssl/ssl_util_ocsp.c (original)
+++ httpd/httpd/trunk/modules/ssl/ssl_util_ocsp.c Wed Oct 23 01:25:05 2013
@@ -96,7 +96,6 @@ static apr_socket_t *send_request(BIO *r
         ap_log_cerror(APLOG_MARK, APLOG_ERR, rv, c, APLOGNO(01974)
                       "could not connect to OCSP responder '%s'",
                       uri->hostinfo);
-        apr_socket_close(sd);
         return NULL;
     }