Commit 294ba7c4 authored by Graham Leggett's avatar Graham Leggett
Browse files

Fix a segfault in the LDAP cache when it is configured switched off.

PR:
Obtained from:
Submitted by:	Jess Holle
Reviewed by:	minfrin, bnicholes, trawick


git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/APACHE_2_0_BRANCH@105268 13f79535-47bb-0310-9956-ffa450edef68
parent 3b5d75aa
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
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 −5
Original line number Diff line number Diff line
APACHE 2.0 STATUS:                                              -*-text-*-
Last modified at [$Date: 2004/09/23 16:44:16 $]
Last modified at [$Date: 2004/09/23 16:55:35 $]

Release:

@@ -100,10 +100,6 @@ PATCHES TO BACKPORT FROM 2.1
	    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
+1 −1
Original line number Diff line number Diff line
@@ -212,7 +212,7 @@ void util_ald_cache_purge(util_ald_cache_t *cache)
 */
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;