*) back out r2040
*) refactor ngx_palloc()
*) introduce ngx_pnalloc()
*) additional pool blocks have smaller header
diff --git a/src/http/ngx_http_script.c b/src/http/ngx_http_script.c
index acd867f..0bdb944 100644
--- a/src/http/ngx_http_script.c
+++ b/src/http/ngx_http_script.c
@@ -341,7 +341,7 @@
value->len = len;
- value->data = ngx_palloc(r->pool, len);
+ value->data = ngx_pnalloc(r->pool, len);
if (value->data == NULL) {
return NULL;
}
@@ -733,7 +733,7 @@
e->buf.len += r->args.len + 1;
}
- e->buf.data = ngx_palloc(r->pool, e->buf.len);
+ e->buf.data = ngx_pnalloc(r->pool, e->buf.len);
if (e->buf.data == NULL) {
e->ip = ngx_http_script_exit;
e->status = NGX_HTTP_INTERNAL_SERVER_ERROR;
@@ -1120,7 +1120,7 @@
}
e->buf.len = len;
- e->buf.data = ngx_palloc(e->request->pool, len);
+ e->buf.data = ngx_pnalloc(e->request->pool, len);
if (e->buf.data == NULL) {
e->ip = ngx_http_script_exit;
e->status = NGX_HTTP_INTERNAL_SERVER_ERROR;