changeset 1455:7f2adaebb81f

fix socket leak introduced in r1374 when request header and body was in one packet and connection went to keep-alive state
author Igor Sysoev <igor@sysoev.ru>
date Sat, 01 Sep 2007 16:40:19 +0000
parents f497ed7682a7
children 698ea64f71e1
files src/http/ngx_http_request_body.c
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/src/http/ngx_http_request_body.c
+++ b/src/http/ngx_http_request_body.c
@@ -446,8 +446,6 @@ ngx_http_discard_request_body(ngx_http_r
         return NGX_OK;
     }
 
-    r->discard_body = 1;
-
     size = r->header_in->last - r->header_in->pos;
 
     if (size) {
@@ -461,6 +459,8 @@ ngx_http_discard_request_body(ngx_http_r
         }
     }
 
+    r->discard_body = 1;
+
     r->read_event_handler = ngx_http_read_discarded_request_body_handler;
 
     if (ngx_handle_read_event(rev, 0) == NGX_ERROR) {