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 2001/08/24 02:47:10 UTC

cvs commit: httpd-2.0/modules/generators mod_cgid.c mod_cgi.c

trawick     01/08/23 17:47:10

  Modified:    modules/filters mod_include.c
               modules/generators mod_cgid.c mod_cgi.c
  Log:
  fix what would seem to be a serious problem in
  split_and_pass_pretag_buckets(): the retcode is not
  specified on one of the paths
  
  Revision  Changes    Path
  1.130     +1 -0      httpd-2.0/modules/filters/mod_include.c
  
  Index: mod_include.c
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/modules/filters/mod_include.c,v
  retrieving revision 1.129
  retrieving revision 1.130
  diff -u -r1.129 -r1.130
  --- mod_include.c	2001/08/23 15:45:49	1.129
  +++ mod_include.c	2001/08/24 00:47:09	1.130
  @@ -119,6 +119,7 @@
               return rv;
           }
       }
  +    return APR_SUCCESS;
   }
   
   /* ------------------------ Environment function -------------------------- */
  
  
  
  1.96      +1 -0      httpd-2.0/modules/generators/mod_cgid.c
  
  Index: mod_cgid.c
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/modules/generators/mod_cgid.c,v
  retrieving revision 1.95
  retrieving revision 1.96
  diff -u -r1.95 -r1.96
  --- mod_cgid.c	2001/08/23 20:15:56	1.95
  +++ mod_cgid.c	2001/08/24 00:47:09	1.96
  @@ -190,6 +190,7 @@
               return rv;
           }
       }
  +    return APR_SUCCESS;
   }
   
   /* If a request includes query info in the URL (stuff after "?"), and
  
  
  
  1.102     +1 -0      httpd-2.0/modules/generators/mod_cgi.c
  
  Index: mod_cgi.c
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/modules/generators/mod_cgi.c,v
  retrieving revision 1.101
  retrieving revision 1.102
  diff -u -r1.101 -r1.102
  --- mod_cgi.c	2001/08/23 18:53:27	1.101
  +++ mod_cgi.c	2001/08/24 00:47:09	1.102
  @@ -158,6 +158,7 @@
               return rv;
           }
       }
  +    return APR_SUCCESS;
   }
   
   static void *create_cgi_config(apr_pool_t *p, server_rec *s)