]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
If we passed the bucket to ap_pass_brigade (because it was EOS or FLUSH),
authorJustin Erenkrantz <jerenkrantz@apache.org>
Fri, 12 Oct 2001 04:59:19 +0000 (04:59 +0000)
committerJustin Erenkrantz <jerenkrantz@apache.org>
Fri, 12 Oct 2001 04:59:19 +0000 (04:59 +0000)
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

ssl_engine_io.c

index 01ca18020626dc6e7153e3018d1dec543f258491..203f93bdb49a21e93fc7edb191afcedfc84216ed 100644 (file)
@@ -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);