diff src/http/ngx_http_core_module.c @ 4636:ed957e0daeb4

Capped the status code that may be returned with "return" and "try_files".
author Ruslan Ermilov <ru@nginx.com>
date Wed, 16 May 2012 13:22:03 +0000
parents f39138a69e0a
children cebbe4fda8aa
line wrap: on
line diff
--- a/src/http/ngx_http_core_module.c
+++ b/src/http/ngx_http_core_module.c
@@ -4662,7 +4662,7 @@ ngx_http_core_try_files(ngx_conf_t *cf, 
 
         code = ngx_atoi(tf[i - 1].name.data + 1, tf[i - 1].name.len - 2);
 
-        if (code == NGX_ERROR) {
+        if (code == NGX_ERROR || code > 999) {
             ngx_conf_log_error(NGX_LOG_EMERG, cf, 0,
                                "invalid code \"%*s\"",
                                tf[i - 1].name.len - 1, tf[i - 1].name.data);