From b603dd4b43b8c4b2cf8a1e74a87fd5799ab537b6 Mon Sep 17 00:00:00 2001 From: Igor Sysoev Date: Wed, 26 Aug 2009 16:04:05 +0000 Subject: request reference counter --- src/http/ngx_http_request_body.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/http/ngx_http_request_body.c') diff --git a/src/http/ngx_http_request_body.c b/src/http/ngx_http_request_body.c index 9d47300f5..775bb2642 100644 --- a/src/http/ngx_http_request_body.c +++ b/src/http/ngx_http_request_body.c @@ -37,6 +37,8 @@ ngx_http_read_client_request_body(ngx_http_request_t *r, ngx_http_request_body_t *rb; ngx_http_core_loc_conf_t *clcf; + r->main->count++; + if (r->request_body || r->discard_body) { post_handler(r); return NGX_OK; -- cgit