You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by jo...@apache.org on 2004/01/26 21:58:12 UTC

cvs commit: httpd-2.0/server protocol.c

jorton      2004/01/26 12:58:12

  Modified:    server   protocol.c
  Log:
  * server/protocol.c (ap_rgetline_core): Re-indent function after being
  skewed by CAN-2003-0132 fix: no functional change.
  
  Revision  Changes    Path
  1.141     +143 -148  httpd-2.0/server/protocol.c
  
  Index: protocol.c
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/server/protocol.c,v
  retrieving revision 1.140
  retrieving revision 1.141
  diff -b -d -u -r1.140 -r1.141
  --- protocol.c	1 Jan 2004 13:26:23 -0000	1.140
  +++ protocol.c	26 Jan 2004 20:58:12 -0000	1.141
  @@ -256,7 +256,6 @@
       apr_brigade_cleanup(bb);
       rv = ap_get_brigade(r->input_filters, bb, AP_MODE_GETLINE,
                           APR_BLOCK_READ, 0);
  -
       if (rv != APR_SUCCESS) {
           return rv;
       }
  @@ -280,7 +279,6 @@
           }
   
           rv = apr_bucket_read(e, &str, &len, APR_BLOCK_READ);
  -
           if (rv != APR_SUCCESS) {
               return rv;
           }
  @@ -388,7 +386,6 @@
           /* We only care about the first byte. */
           rv = ap_get_brigade(r->input_filters, bb, AP_MODE_SPECULATIVE,
                               APR_BLOCK_READ, 1);
  -
           if (rv != APR_SUCCESS) {
               return rv;
           }
  @@ -405,7 +402,6 @@
           }
   
           rv = apr_bucket_read(e, &str, &len, APR_BLOCK_READ);
  -
           if (rv != APR_SUCCESS) {
                   apr_brigade_cleanup(bb);
               return rv;
  @@ -446,7 +442,6 @@
   
                       rv = ap_rgetline_core(&tmp, next_size,
                                             &next_len, r, 0, bb);
  -
                   if (rv != APR_SUCCESS) {
                       return rv;
                   }