From: Joe Orton Date: Wed, 15 Dec 2004 10:08:09 +0000 (+0000) Subject: * modules/ssl/ssl_engine_io.c (ssl_io_filter_cleanup): Fix segfaults X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c906007bc4bd1dae3d845ae5f1799af940af7e4c;p=thirdparty%2Fapache%2Fhttpd.git * modules/ssl/ssl_engine_io.c (ssl_io_filter_cleanup): Fix segfaults 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/modules/ssl@111959 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/ssl_engine_io.c b/ssl_engine_io.c index f67c032ca79..fc77d41b2e6 100644 --- a/ssl_engine_io.c +++ b/ssl_engine_io.c @@ -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; }