than silently discarding them.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@95412
13f79535-47bb-0310-9956-
ffa450edef68
#include "util_filter.h"
#include "apr_buckets.h"
#include "http_request.h"
+#include "http_protocol.h"
static const char bucketeerFilterName[] = "BUCKETEER";
module AP_MODULE_DECLARE_DATA bucketeer_module;
continue;
}
+ if (AP_BUCKET_IS_ERROR(e)) {
+ apr_bucket *err_copy;
+ apr_bucket_copy(e, &err_copy);
+ APR_BRIGADE_INSERT_TAIL(ctx->bb, err_copy);
+ continue;
+ }
+
/* read */
apr_bucket_read(e, &data, &len, APR_BLOCK_READ);