You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by je...@apache.org on 2002/01/02 06:29:08 UTC

cvs commit: httpd-2.0/server core.c

jerenkrantz    02/01/01 21:29:08

  Modified:    server   core.c
  Log:
  Remove a needless immortal bucket creation.  We can just leave the
  brigade as-is.
  
  Suggested by: Cliff
  
  Revision  Changes    Path
  1.125     +0 -2      httpd-2.0/server/core.c
  
  Index: core.c
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/server/core.c,v
  retrieving revision 1.124
  retrieving revision 1.125
  diff -u -r1.124 -r1.125
  --- core.c	1 Jan 2002 20:36:18 -0000	1.124
  +++ core.c	2 Jan 2002 05:29:08 -0000	1.125
  @@ -2960,8 +2960,6 @@
   
           if (APR_STATUS_IS_EAGAIN(rv)) {
               *readbytes = 0;
  -            e = apr_bucket_immortal_create("", 0);
  -            APR_BRIGADE_INSERT_TAIL(b, e);
               return APR_SUCCESS;
           }
           else if (rv != APR_SUCCESS) {