Commit a9c097af authored by Ryan Bloom's avatar Ryan Bloom
Browse files

Fix the core to take the new file bucket type into account.


git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87794 13f79535-47bb-0310-9956-ffa450edef68
parent 742f55e3
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -3349,7 +3349,8 @@ static apr_status_t core_output_filter(ap_filter_t *f, apr_bucket_brigade *b)
                break;
            }
            else if (APR_BUCKET_IS_FILE(e)) {
                apr_bucket_file *a = e->data;
                apr_bucket_shared *s = e->data;
                apr_bucket_file *a = s->data;
                /* Assume there is at most one APR_BUCKET_FILE in the brigade */
                fd = a->fd;
                flen = e->length;