From d78bd01cc6c97191a20fcde35493122253b8f898 Mon Sep 17 00:00:00 2001 From: Joe Orton Date: Mon, 26 Jan 2004 21:09:12 +0000 Subject: [PATCH] * server/protocol.c (ap_rgetline_core): Fix folding if header is continued over more than two lines. PR: 19405 (affects proxy only) git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@102414 13f79535-47bb-0310-9956-ffa450edef68 --- server/protocol.c | 1 + 1 file changed, 1 insertion(+) diff --git a/server/protocol.c b/server/protocol.c index cd3be724ad..88680cb658 100644 --- a/server/protocol.c +++ b/server/protocol.c @@ -461,6 +461,7 @@ AP_DECLARE(apr_status_t) ap_rgetline_core(char **s, apr_size_t n, *s = new_buffer; } + last_char += next_len; bytes_handled += next_len; } } -- 2.50.1