fielding    98/10/09 09:47:55

  Modified:    src      CHANGES
               src/modules/proxy proxy_util.c
  Log:
  Fixed a segmentation violation in mod_proxy when a response is non-cachable.
  
  PR: 2950
  
  Revision  Changes    Path
  1.1105    +5 -0      apache-1.3/src/CHANGES
  
  Index: CHANGES
  ===================================================================
  RCS file: /home/cvs/apache-1.3/src/CHANGES,v
  retrieving revision 1.1104
  retrieving revision 1.1105
  diff -u -r1.1104 -r1.1105
  --- CHANGES   1998/10/07 09:20:38     1.1104
  +++ CHANGES   1998/10/09 16:47:52     1.1105
  @@ -1,3 +1,8 @@
  +Changes with Apache 1.3.4
  +
  +  *) Fixed a segmentation violation in mod_proxy when a response is
  +     non-cachable.  [Roy Fielding, traced by Doug Bloebaum].
  +
   Changes with Apache 1.3.3
   
     *) Added a complete implementation of the Expect header field as
  
  
  
  1.71      +1 -1      apache-1.3/src/modules/proxy/proxy_util.c
  
  Index: proxy_util.c
  ===================================================================
  RCS file: /home/cvs/apache-1.3/src/modules/proxy/proxy_util.c,v
  retrieving revision 1.70
  retrieving revision 1.71
  diff -u -r1.70 -r1.71
  --- proxy_util.c      1998/08/31 19:51:59     1.70
  +++ proxy_util.c      1998/10/09 16:47:54     1.71
  @@ -581,7 +581,7 @@
                   ap_reset_timeout(r);
   
               if (w <= 0) {
  -                if (c != NULL) {
  +                if (c != NULL && c->fp != NULL) {
                       /* when a send failure occurs, we need to decide
                        * whether to continue loading and caching the
                        * document, or to abort the whole thing
  
  
  

Reply via email to