mirror of
https://github.com/apache/httpd.git
synced 2025-08-13 14:40:20 +00:00
Drop redundant == --rrl_none evaluation, noted by rpluem
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1756823 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
@ -680,8 +680,7 @@ static int read_request_line(request_rec *r, apr_bucket_brigade *bb)
|
||||
goto rrl_done;
|
||||
}
|
||||
for (r->protocol = ll; apr_isspace(*r->protocol); ++r->protocol)
|
||||
if (strchr(badwhitespace, *r->protocol) && deferred_error == rrl_none
|
||||
&& deferred_error == rrl_none)
|
||||
if (strchr(badwhitespace, *r->protocol) && deferred_error == rrl_none)
|
||||
deferred_error = rrl_badwhitespace;
|
||||
*ll = '\0';
|
||||
if (!(ll = strpbrk(r->protocol, " \t\n\v\f\r"))) {
|
||||
|
Reference in New Issue
Block a user