mirror of
https://github.com/nginx/nginx.git
synced 2026-08-04 14:58:20 +00:00
fix case when the first try is shorter then URI
This commit is contained in:
parent
288e503e92
commit
42c67dd5fb
1 changed files with 1 additions and 5 deletions
|
|
@ -1086,12 +1086,8 @@ ngx_http_core_try_files_phase(ngx_http_request_t *r,
|
|||
len = tf->name.len;
|
||||
}
|
||||
|
||||
reserve = len - r->uri.len;
|
||||
|
||||
/* 16 bytes are preallocation */
|
||||
reserve = reserve < 16 ? 16 : reserve + 16;
|
||||
|
||||
reserve += alias;
|
||||
reserve = ngx_abs((ssize_t) (len - r->uri.len)) + alias + 16;
|
||||
|
||||
if (reserve > allocated) {
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue