From: Justin Erenkrantz Date: Fri, 12 Oct 2001 04:59:19 +0000 (+0000) Subject: If we passed the bucket to ap_pass_brigade (because it was EOS or FLUSH), X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=922bcdd33ef1b6e94c29139f51b1a466d41ce591;p=thirdparty%2Fapache%2Fhttpd.git If we passed the bucket to ap_pass_brigade (because it was EOS or FLUSH), we shouldn't delete it. Thanks to Doug for pointing out that something broke. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk/modules/ssl@91441 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/ssl_engine_io.c b/ssl_engine_io.c index 01ca1802062..203f93bdb49 100644 --- a/ssl_engine_io.c +++ b/ssl_engine_io.c @@ -406,9 +406,9 @@ static apr_status_t ssl_io_filter_Output(ap_filter_t *f, if ((ret = churn_output(ctx)) != APR_SUCCESS) { break; } - } - apr_bucket_delete(bucket); + apr_bucket_delete(bucket); + } } apr_brigade_destroy(bb);