- Length restrictions may error on a too long request path, leaving
the uri unset.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@
1910533 13f79535-47bb-0310-9956-
ffa450edef68
headers = breq->headers? apr_table_clone(r->pool, breq->headers) : NULL;
}
+ if (!method || !uri || !protocol) {
+ access_status = berr? ((ap_bucket_error *)(berr->data))->status :
+ HTTP_INTERNAL_SERVER_ERROR;
+ goto die_unusable_input;
+ }
+
if (headers) {
r->headers_in = headers;
}
+
ap_log_rerror(APLOG_MARK, APLOG_TRACE2, 0, r,
"checking request: %s %s %s",
method, uri, protocol);