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

(-)java/org/apache/coyote/http11/filters/FlushableGZIPOutputStream.java (-1 / +1 lines)
Lines 137-143 Link Here
137
            if (len > 0) {
137
            if (len > 0) {
138
                out.write(buf, 0, len);
138
                out.write(buf, 0, len);
139
            }
139
            }
140
        } while (len != 0);
140
        } while (len > 0 || !def.needsInput());
141
    }
141
    }
142
142
143
}
143
}

Return to bug 53725