altarch-user / rpms / httpd

Forked from rpms/httpd 2 years ago
Clone

Blame SOURCES/httpd-2.4.6-r1775832.patch

008793
--- a/modules/filters/mod_ext_filter.c 2016/12/23 12:35:43 1775831
008793
+++ b/modules/filters/mod_ext_filter.c 2016/12/23 12:36:26 1775832
008793
@@ -757,6 +757,13 @@
008793
             break;
008793
         }
008793
 
008793
+        if (AP_BUCKET_IS_ERROR(b)) {
008793
+            apr_bucket *cpy;
008793
+            apr_bucket_copy(b, &cpy);
008793
+            APR_BRIGADE_INSERT_TAIL(bb_tmp, cpy);
008793
+            break;
008793
+        }
008793
+
008793
         rv = apr_bucket_read(b, &data, &len, APR_BLOCK_READ);
008793
         if (rv != APR_SUCCESS) {
008793
             ap_log_rerror(APLOG_MARK, APLOG_ERR, rv, r, APLOGNO(01463) "apr_bucket_read()");