Commit b82abcc0 authored by Justin Erenkrantz's avatar Justin Erenkrantz
Browse files

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@91441 13f79535-47bb-0310-9956-ffa450edef68
parent 86346aae
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -406,10 +406,10 @@ 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_brigade_destroy(bb);
    return ret;