From 42c67dd5fba925f0fc3ef225c3c0386868a75b72 Mon Sep 17 00:00:00 2001 From: Igor Sysoev Date: Sun, 1 Mar 2009 19:10:36 +0000 Subject: [PATCH] fix case when the first try is shorter then URI --- src/http/ngx_http_core_module.c | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/src/http/ngx_http_core_module.c b/src/http/ngx_http_core_module.c index 6a5daddb3..88672f088 100644 --- a/src/http/ngx_http_core_module.c +++ b/src/http/ngx_http_core_module.c @@ -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) {