From 56fce56f4f06a4c1a57a51c1bb1513397b053b1e Mon Sep 17 00:00:00 2001 From: Ruslan Ermilov Date: Thu, 21 Mar 2013 16:03:24 +0000 Subject: Use NGX_DEFAULT_POOL_SIZE macro where appropriate. --- src/http/ngx_http.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/http/ngx_http.c') diff --git a/src/http/ngx_http.c b/src/http/ngx_http.c index 8704c404c..987ae54df 100644 --- a/src/http/ngx_http.c +++ b/src/http/ngx_http.c @@ -1479,7 +1479,7 @@ ngx_http_server_names(ngx_conf_t *cf, ngx_http_core_main_conf_t *cmcf, ngx_memzero(&ha, sizeof(ngx_hash_keys_arrays_t)); - ha.temp_pool = ngx_create_pool(16384, cf->log); + ha.temp_pool = ngx_create_pool(NGX_DEFAULT_POOL_SIZE, cf->log); if (ha.temp_pool == NULL) { return NGX_ERROR; } -- cgit