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

(-)catalina/src/share/org/apache/catalina/connector/CoyoteReader.java (-1 / +1 lines)
Lines 153-159 Link Here
153
            while ((pos < MAX_LINE_LENGTH) && (end < 0)) {
153
            while ((pos < MAX_LINE_LENGTH) && (end < 0)) {
154
                int nRead = read(lineBuffer, pos, MAX_LINE_LENGTH - pos);
154
                int nRead = read(lineBuffer, pos, MAX_LINE_LENGTH - pos);
155
                if (nRead < 0) {
155
                if (nRead < 0) {
156
                    if (pos == 0) {
156
                    if (pos == 0 && aggregator == null) {
157
                        return null;
157
                        return null;
158
                    }
158
                    }
159
                    end = pos;
159
                    end = pos;

Return to bug 42727