coar        99/01/21 11:17:09

  Modified:    src      CHANGES
               src/main util.c
  Log:
        Oops; some inadequate counter advancement..
  
  Submitted by: Rick Perry <[EMAIL PROTECTED]>
  Reviewed by:  Ken Coar
  
  Revision  Changes    Path
  1.1221    +3 -0      apache-1.3/src/CHANGES
  
  Index: CHANGES
  ===================================================================
  RCS file: /home/cvs/apache-1.3/src/CHANGES,v
  retrieving revision 1.1220
  retrieving revision 1.1221
  diff -u -r1.1220 -r1.1221
  --- CHANGES   1999/01/17 10:49:10     1.1220
  +++ CHANGES   1999/01/21 19:17:07     1.1221
  @@ -1,5 +1,8 @@
   Changes with Apache 1.3.5
   
  +  *) SECURITY: Avoid some buffer overflow problems when escaping
  +     quoted strings.  [Rick Perry <[EMAIL PROTECTED]>]
  +
     *) Let src/Configure be aware of CFLAGS options starting with plus
        signs as it's the case for the HP/UX compiler.
        [Doug Yatcilla <[EMAIL PROTECTED]>] PR#3681
  
  
  
  1.146     +1 -0      apache-1.3/src/main/util.c
  
  Index: util.c
  ===================================================================
  RCS file: /home/cvs/apache-1.3/src/main/util.c,v
  retrieving revision 1.145
  retrieving revision 1.146
  diff -u -r1.145 -r1.146
  --- util.c    1999/01/08 20:08:23     1.145
  +++ util.c    1999/01/21 19:17:09     1.146
  @@ -1877,6 +1877,7 @@
         */
        if ((*inchr == '\\') && (inchr[1] != '\0')) {
            inchr++;
  +         newlen++;
        }
        inchr++;
       }
  
  
  

Reply via email to