Submitted by: Bill Stoddard
Reviewed by: Jeff Trawick
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86352
13f79535-47bb-0310-9956-
ffa450edef68
for (more = NULL; b; b = more, more = NULL) {
apr_off_t bytes = 0;
ap_bucket *eos = NULL;
+ char chunk_hdr[20]; /* enough space for the snprintf below */
AP_BRIGADE_FOREACH(e, b) {
if (e->type == AP_BUCKET_EOS) {
/* if there are content bytes, then wrap them in a chunk */
if (bytes > 0) {
- char chunk_hdr[20]; /* enough space for the snprintf below */
apr_size_t hdr_len;
/*