]> granicus.if.org Git - apache/commitdiff
* modules/ssl/ssl_engine_io.c (ssl_io_filter_cleanup): Fix segfaults
authorJoe Orton <jorton@apache.org>
Wed, 15 Dec 2004 10:08:09 +0000 (10:08 +0000)
committerJoe Orton <jorton@apache.org>
Wed, 15 Dec 2004 10:08:09 +0000 (10:08 +0000)
from using ap_log_cerror from a c->pool cleanup; the debug message
triggers too often anyway so just remove it.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@111959 13f79535-47bb-0310-9956-ffa450edef68

modules/ssl/ssl_engine_io.c

index f67c032ca794384d9dd9823feefc84ba0c89161d..fc77d41b2e6870b73355fa7b1db9ec0da922eee1 100644 (file)
@@ -999,9 +999,6 @@ static apr_status_t ssl_io_filter_cleanup(void *data)
         conn_rec *c = (conn_rec *)SSL_get_app_data(filter_ctx->pssl);
         SSLConnRec *sslconn = myConnConfig(c);
 
-        ap_log_cerror(APLOG_MARK, APLOG_DEBUG, 0, c,
-                     "SSL connection destroyed without being closed");
-
         SSL_free(filter_ctx->pssl);
         sslconn->ssl = filter_ctx->pssl = NULL;
     }