Skip to content

Commit

Permalink
loop in checking response headers
Browse files Browse the repository at this point in the history
w/ HTTPProtocolOptions Unsafe


git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1772418 13f79535-47bb-0310-9956-ffa450edef68
  • Loading branch information
covener committed Dec 3, 2016
1 parent af05879 commit be13fe8
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions modules/http/http_filters.c
Expand Up @@ -667,6 +667,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');
}
Expand Down

0 comments on commit be13fe8

Please sign in to comment.