If any, pass pending meta bucket down the chain before leaving.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@
1829039 13f79535-47bb-0310-9956-
ffa450edef68
return rv;
}
}
+ if (pending_meta) {
+ /* passing pending meta bucket down the chain before leaving */
+ rv = ap_pass_brigade(f->next, ctx->bbnext);
+ apr_brigade_cleanup(ctx->bbnext);
+ if (rv != APR_SUCCESS) {
+ return rv;
+ }
+ }
+
return APR_SUCCESS;
}
+
static apr_status_t xml2enc_charset(request_rec* r, xmlCharEncoding* encp,
const char** encoding)
{