diff options
| author | Ruslan Ermilov <ru@nginx.com> | 2013-04-29 18:58:58 +0400 |
|---|---|---|
| committer | Ruslan Ermilov <ru@nginx.com> | 2013-04-29 18:58:58 +0400 |
| commit | 9014efdadfd9ba80a5f3829364551fcdf44d1213 (patch) | |
| tree | cb1897f614903761396aa919676791a0c57e0acd /src | |
| parent | e565dbc6e02130cdf93d748ef84ecaa0f9df86fd (diff) | |
| download | nginx-9014efdadfd9ba80a5f3829364551fcdf44d1213.tar.gz nginx-9014efdadfd9ba80a5f3829364551fcdf44d1213.tar.bz2 | |
Proxy: allocate $proxy_internal_body_length from request pool.
Diffstat (limited to '')
| -rw-r--r-- | src/http/modules/ngx_http_proxy_module.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/http/modules/ngx_http_proxy_module.c b/src/http/modules/ngx_http_proxy_module.c index eadc8c480..892ee27cb 100644 --- a/src/http/modules/ngx_http_proxy_module.c +++ b/src/http/modules/ngx_http_proxy_module.c @@ -2076,7 +2076,7 @@ ngx_http_proxy_internal_body_length_variable(ngx_http_request_t *r, v->no_cacheable = 0; v->not_found = 0; - v->data = ngx_pnalloc(r->connection->pool, NGX_OFF_T_LEN); + v->data = ngx_pnalloc(r->pool, NGX_OFF_T_LEN); if (v->data == NULL) { return NGX_ERROR; |
