Commit 84cd1681 authored by Joe Orton's avatar Joe Orton
Browse files

* 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
parent edb2b9c3
Loading
Loading
Loading
Loading
+0 −3
Original line number Diff line number Diff line
@@ -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;
    }