nginx-0.1.28-RELEASE import
*) Bugfix: nginx hogs CPU while proxying the huge files.
*) Bugfix: nginx could not be built by gcc 4.0 on Linux.
diff --git a/src/core/ngx_cycle.c b/src/core/ngx_cycle.c index 51864e3..5104205 100644 --- a/src/core/ngx_cycle.c +++ b/src/core/ngx_cycle.c
@@ -54,7 +54,7 @@ log = old_cycle->log; - pool = ngx_create_pool(16 * 1024, log); + pool = ngx_create_pool(NGX_CYCLE_POOL_SIZE, log); if (pool == NULL) { return NULL; }