summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoe Orton <jorton@apache.org>2004-12-15 11:17:22 +0000
committerJoe Orton <jorton@apache.org>2004-12-15 11:17:22 +0000
commit85d421a987bdb86c7a78f36347bf214637c10271 (patch)
tree32f6b8ec621051a005e45a93c99bbc526e72ea21
parentc906007bc4bd1dae3d845ae5f1799af940af7e4c (diff)
downloadhttpd-85d421a987bdb86c7a78f36347bf214637c10271.tar.gz
* modules/ssl/ssl_engine_io.c (bio_filter_out_flush): Revert the
passed-brigade-reuse "fix" which is currently unnecessary. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk/modules/ssl@111962 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--ssl_engine_io.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/ssl_engine_io.c b/ssl_engine_io.c
index fc77d41b2e..63ee452ab7 100644
--- a/ssl_engine_io.c
+++ b/ssl_engine_io.c
@@ -153,8 +153,6 @@ static int bio_filter_out_flush(BIO *bio)
outctx->rc = ap_pass_brigade(outctx->filter_ctx->pOutputFilter->next,
outctx->bb);
- /* create new brigade ready for next time through */
- outctx->bb = apr_brigade_create(outctx->c->pool, outctx->c->bucket_alloc);
return (outctx->rc == APR_SUCCESS) ? 1 : -1;
}