reserve space for r->uri, the bug has been introduced in r2566

This commit is contained in:
Igor Sysoev 2009-03-18 12:21:19 +00:00
parent c8bcb7b97c
commit ecdd385af1
1 changed files with 3 additions and 1 deletions

View File

@ -1688,7 +1688,9 @@ ngx_http_map_uri_to_path(ngx_http_request_t *r, ngx_str_t *path,
last = ngx_copy(path->data, clcf->root.data, clcf->root.len);
} else {
if (ngx_http_script_run(r, path, clcf->root_lengths->elts, ++reserved,
reserved += alias ? 1 : r->uri.len + 1;
if (ngx_http_script_run(r, path, clcf->root_lengths->elts, reserved,
clcf->root_values->elts)
== NULL)
{