git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@89902
13f79535-47bb-0310-9956-
ffa450edef68
if ((APR_BRIGADE_EMPTY(cntxt->ssi_tag_brigade)) && \
(cntxt->head_start_bucket != NULL)) { \
apr_bucket_brigade *tag_plus; \
+ int rv; \
\
tag_plus = apr_brigade_split(brgd, cntxt->head_start_bucket); \
- ap_pass_brigade(next, brgd); \
+ rv = ap_pass_brigade(next, brgd); \
+ if (rv != APR_SUCCESS) { \
+ return rv; \
+ } \
cntxt->bytes_parsed = 0; \
brgd = tag_plus; \
}