View | Details | Raw Unified | Return to bug 62180
Collapse All | Expand All

(-)a/modules/filters/mod_xml2enc.c (+4 lines)
Lines 404-409 static apr_status_t xml2enc_ffunc(ap_filter_t* f, apr_bucket_brigade* bb) Link Here
404
                /* send remaining data */
404
                /* send remaining data */
405
                APR_BRIGADE_INSERT_TAIL(ctx->bbnext, b);
405
                APR_BRIGADE_INSERT_TAIL(ctx->bbnext, b);
406
                return ap_fflush(f->next, ctx->bbnext);
406
                return ap_fflush(f->next, ctx->bbnext);
407
            } else if (AP_BUCKET_IS_ERROR(b)) {
408
                /* passing error bucket down the chain */
409
                APR_BRIGADE_INSERT_TAIL(ctx->bbnext, b);
410
                continue;
407
            } else if (APR_BUCKET_IS_FLUSH(b)) {
411
            } else if (APR_BUCKET_IS_FLUSH(b)) {
408
                ap_fflush(f->next, ctx->bbnext);
412
                ap_fflush(f->next, ctx->bbnext);
409
            }
413
            }

Return to bug 62180