Skip to content

Commit 84cd168

Browse files
committed
* 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
1 parent edb2b9c commit 84cd168

1 file changed

Lines changed: 0 additions & 3 deletions

File tree

ssl_engine_io.c

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -999,9 +999,6 @@ static apr_status_t ssl_io_filter_cleanup(void *data)
999999
conn_rec *c = (conn_rec *)SSL_get_app_data(filter_ctx->pssl);
10001000
SSLConnRec *sslconn = myConnConfig(c);
10011001

1002-
ap_log_cerror(APLOG_MARK, APLOG_DEBUG, 0, c,
1003-
"SSL connection destroyed without being closed");
1004-
10051002
SSL_free(filter_ctx->pssl);
10061003
sslconn->ssl = filter_ctx->pssl = NULL;
10071004
}

0 commit comments

Comments
 (0)