diff src/http/ngx_http_variables.c @ 3345:d8228f0b5113

evaluate maximum captures size on configuration phase
author Igor Sysoev <igor@sysoev.ru>
date Mon, 16 Nov 2009 19:11:38 +0000
parents 1aed55182ea2
children fe08c14530e9
line wrap: on
line diff
--- a/src/http/ngx_http_variables.c	Mon Nov 16 19:10:45 2009 +0000
+++ b/src/http/ngx_http_variables.c	Mon Nov 16 19:11:38 2009 +0000
@@ -1759,7 +1759,7 @@
     cmcf = ngx_http_get_module_main_conf(r, ngx_http_core_module);
 
     if (re->ncaptures) {
-        len = (cmcf->ncaptures + 1) * 3;
+        len = cmcf->ncaptures;
 
         if (r->captures == NULL) {
             r->captures = ngx_palloc(r->pool, len * sizeof(int));