summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorMaxim Dounin <mdounin@mdounin.ru>2013-08-23 22:18:39 +0400
committerMaxim Dounin <mdounin@mdounin.ru>2013-08-23 22:18:39 +0400
commit0f49681f28139fabeb0da90f98129532221d5b0d (patch)
treed965736ec69fa5d34c8a9060903ea70db61c3b2b
parenta01f0078edfecc6ef3d406bb4b3100737f592d4c (diff)
downloadnginx-0f49681f28139fabeb0da90f98129532221d5b0d.tar.gz
nginx-0f49681f28139fabeb0da90f98129532221d5b0d.tar.bz2
Fixed try_files with empty argument (ticket #390).
-rw-r--r--src/http/ngx_http_core_module.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/http/ngx_http_core_module.c b/src/http/ngx_http_core_module.c
index 47e5ff789..85b4fe882 100644
--- a/src/http/ngx_http_core_module.c
+++ b/src/http/ngx_http_core_module.c
@@ -4766,7 +4766,9 @@ ngx_http_core_try_files(ngx_conf_t *cf, ngx_command_t *cmd, void *conf)
tf[i].name = value[i + 1];
- if (tf[i].name.data[tf[i].name.len - 1] == '/') {
+ if (tf[i].name.len > 0
+ && tf[i].name.data[tf[i].name.len - 1] == '/')
+ {
tf[i].test_dir = 1;
tf[i].name.len--;
tf[i].name.data[tf[i].name.len] = '\0';