]> granicus.if.org Git - apache/commitdiff
Avoid truncating the_request line when there is no request to 'W'rite.
authorWilliam A. Rowe Jr <wrowe@apache.org>
Fri, 13 May 2016 16:52:33 +0000 (16:52 +0000)
committerWilliam A. Rowe Jr <wrowe@apache.org>
Fri, 13 May 2016 16:52:33 +0000 (16:52 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1743699 13f79535-47bb-0310-9956-ffa450edef68

modules/http/http_core.c

index 90ae92b6f2eeeed3a27ca09351e346750f2c5371..6fdb82c229ad2d8b4626d05bec4e5014db180e49 100644 (file)
@@ -148,9 +148,9 @@ static int ap_process_http_async_connection(conn_rec *c)
             c->keepalive = AP_CONN_UNKNOWN;
             /* process the request if it was read without error */
 
-            ap_update_child_status(c->sbh, SERVER_BUSY_WRITE, r);
             if (r->status == HTTP_OK) {
                 cs->state = CONN_STATE_HANDLER;
+                ap_update_child_status(c->sbh, SERVER_BUSY_WRITE, r);
                 ap_process_async_request(r);
                 /* After the call to ap_process_request, the
                  * request pool may have been deleted.  We set
@@ -203,10 +203,10 @@ static int ap_process_http_sync_connection(conn_rec *c)
         c->keepalive = AP_CONN_UNKNOWN;
         /* process the request if it was read without error */
 
-        ap_update_child_status(c->sbh, SERVER_BUSY_WRITE, r);
         if (r->status == HTTP_OK) {
             if (cs)
                 cs->state = CONN_STATE_HANDLER;
+            ap_update_child_status(c->sbh, SERVER_BUSY_WRITE, r);
             ap_process_request(r);
             /* After the call to ap_process_request, the
              * request pool will have been deleted.  We set