You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by mi...@apache.org on 2004/09/23 18:55:37 UTC

cvs commit: httpd-2.0/modules/experimental util_ldap_cache_mgr.c

minfrin     2004/09/23 09:55:37

  Modified:    .        Tag: APACHE_2_0_BRANCH CHANGES STATUS
               modules/experimental Tag: APACHE_2_0_BRANCH
                        util_ldap_cache_mgr.c
  Log:
  Fix a segfault in the LDAP cache when it is configured switched off.
  Submitted by:	Jess Holle
  Reviewed by:	minfrin, bnicholes, trawick
  
  Revision  Changes    Path
  No                   revision
  No                   revision
  1.988.2.358 +3 -0      httpd-2.0/CHANGES
  
  Index: CHANGES
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/CHANGES,v
  retrieving revision 1.988.2.357
  retrieving revision 1.988.2.358
  diff -u -r1.988.2.357 -r1.988.2.358
  --- CHANGES	21 Sep 2004 13:21:12 -0000	1.988.2.357
  +++ CHANGES	23 Sep 2004 16:55:34 -0000	1.988.2.358
  @@ -1,5 +1,8 @@
   Changes with Apache 2.0.52
   
  +  *) Fix a segfault in the LDAP cache when it is configured switched
  +     off. [Jess Holle <jessh ptc.com>]
  +
     *) SECURITY: CAN-2004-0811 (cve.mitre.org)
        Fix merging of the Satisfy directive, which was applied to
        the surrounding context and could allow access despite configured
  
  
  
  1.751.2.1080 +1 -5      httpd-2.0/STATUS
  
  Index: STATUS
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/STATUS,v
  retrieving revision 1.751.2.1079
  retrieving revision 1.751.2.1080
  diff -u -r1.751.2.1079 -r1.751.2.1080
  --- STATUS	23 Sep 2004 16:44:16 -0000	1.751.2.1079
  +++ STATUS	23 Sep 2004 16:55:35 -0000	1.751.2.1080
  @@ -100,10 +100,6 @@
   	    in this patch.
          minfrin: The excess "else" condition has been removed in v1.10.
   
  -    *) Fix a segfault in the LDAP cache when it is configured switched off.
  -         modules/ldap/util_ldap_cache_mgr.c: 1.7
  -       +1: minfrin, bnicholes, trawick
  -
       *) Use HTML 2.0 <hr> for error pages. PR 30732
            modules/http/http_protocol.c: r1.483
          +1: nd, jorton, trawick, jerenkrantz
  
  
  
  No                   revision
  No                   revision
  1.3.2.13  +1 -1      httpd-2.0/modules/experimental/Attic/util_ldap_cache_mgr.c
  
  Index: util_ldap_cache_mgr.c
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/modules/experimental/Attic/util_ldap_cache_mgr.c,v
  retrieving revision 1.3.2.12
  retrieving revision 1.3.2.13
  diff -u -r1.3.2.12 -r1.3.2.13
  --- util_ldap_cache_mgr.c	4 Aug 2004 20:47:21 -0000	1.3.2.12
  +++ util_ldap_cache_mgr.c	23 Sep 2004 16:55:37 -0000	1.3.2.13
  @@ -212,7 +212,7 @@
    */
   util_url_node_t *util_ald_create_caches(util_ldap_state_t *st, const char *url)
   {
  -    util_url_node_t curl, *newcurl;
  +    util_url_node_t curl, *newcurl = NULL;
       util_ald_cache_t *search_cache;
       util_ald_cache_t *compare_cache;
       util_ald_cache_t *dn_compare_cache;