Commit f1367068 authored by Eric Covener's avatar Eric Covener
Browse files

Merge r1772418 from trunk:

loop in checking response headers 

w/ HTTPProtocolOptions Unsafe



git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x-merge-http-strict@1772419 13f79535-47bb-0310-9956-ffa450edef68
parent 954665be
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -722,6 +722,7 @@ static int check_header(void *arg, const char *name, const char *val)
        /* Simply terminate scanning on a CTL char, allowing whitespace */
        test = val;
        do {
            while (*test == ' ' || *test == '\t') test++;
            test = ap_scan_vchar_obstext(test);
        } while (*test == ' ' || *test == '\t');
    }