You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by tr...@apache.org on 2004/04/26 17:54:23 UTC

cvs commit: httpd-2.0/modules/arch/win32 mod_isapi.c

trawick     2004/04/26 08:54:23

  Modified:    .        Tag: APACHE_2_0_BRANCH CHANGES STATUS
               modules/arch/win32 Tag: APACHE_2_0_BRANCH mod_isapi.c
  Log:
  grab this from 2.1-dev:
  
  mod_isapi: GetServerVariable("ALL_RAW") returned the wrong buffer
  size.
  
  PR:             20617
  Submitted by:	Jesse Pelton <jsp pkc.com>
  Reviewed by:	trawick, stoddard, nd
  
  Revision  Changes    Path
  No                   revision
  No                   revision
  1.988.2.272 +3 -0      httpd-2.0/CHANGES
  
  Index: CHANGES
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/CHANGES,v
  retrieving revision 1.988.2.271
  retrieving revision 1.988.2.272
  diff -u -r1.988.2.271 -r1.988.2.272
  --- CHANGES	26 Apr 2004 15:45:51 -0000	1.988.2.271
  +++ CHANGES	26 Apr 2004 15:54:22 -0000	1.988.2.272
  @@ -1,5 +1,8 @@
   Changes with Apache 2.0.50
   
  +  *) mod_isapi: GetServerVariable("ALL_RAW") returned the wrong buffer
  +     size.  PR 20617.  [Jesse Pelton <jsp pkc.com>]
  +
     *) mod_dav: Fix a problem that could cause crashes when manipulating 
        locks on some platforms.  [Jeff Trawick]
   
  
  
  
  1.751.2.839 +1 -6      httpd-2.0/STATUS
  
  Index: STATUS
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/STATUS,v
  retrieving revision 1.751.2.838
  retrieving revision 1.751.2.839
  diff -u -r1.751.2.838 -r1.751.2.839
  --- STATUS	26 Apr 2004 15:45:52 -0000	1.751.2.838
  +++ STATUS	26 Apr 2004 15:54:22 -0000	1.751.2.839
  @@ -353,11 +353,6 @@
            nd replies: But if it can't be 0 the alternatives thereafter make no
              sense anymore, right?
   
  -    * mod_isapi: GetServerVariable("ALL_RAW") returned the wrong buffer
  -      size.  PR 20617  [Jesse Pelton <jsp pkc.com>]
  -        http://cvs.apache.org/viewcvs.cgi/httpd-2.0/modules/arch/win32/mod_isapi.c?r1=1.96&r2=1.97
  -      +1: trawick, stoddard, nd
  -
       * mod_isapi: send_response_header() failed to copy status string's 
         last character.  PR 20619.  [Jesse Pelton <jsp pkc.com>]
         http://cvs.apache.org/viewcvs.cgi/httpd-2.0/modules/arch/win32/mod_isapi.c?r1=1.97&r2=1.98
  
  
  
  No                   revision
  No                   revision
  1.88.2.6  +1 -1      httpd-2.0/modules/arch/win32/mod_isapi.c
  
  Index: mod_isapi.c
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/modules/arch/win32/mod_isapi.c,v
  retrieving revision 1.88.2.5
  retrieving revision 1.88.2.6
  diff -u -r1.88.2.5 -r1.88.2.6
  --- mod_isapi.c	9 Feb 2004 20:53:15 -0000	1.88.2.5
  +++ mod_isapi.c	26 Apr 2004 15:54:23 -0000	1.88.2.6
  @@ -540,7 +540,7 @@
           int i;
   
           for (len = 0, i = 0; i < arr->nelts; i++) {
  -            len += strlen(elts[i].key) + strlen(elts[i].val) + 2;
  +            len += strlen(elts[i].key) + strlen(elts[i].val) + 3;
           }
     
           if (*buf_size < len + 1) {