Changes with Apache 2.0.52
+ *) Fix the global mutex crash when the global mutex is never allocated
+ due to disabled/empty caches. [Jess Holle <jessh ptc.com>]
+
*) Fix a segfault in the LDAP cache when it is configured switched
off. [Jess Holle <jessh ptc.com>]
APACHE 2.0 STATUS: -*-text-*-
-Last modified at [$Date: 2004/09/23 16:58:17 $]
+Last modified at [$Date: 2004/09/23 17:08:25 $]
Release:
http://cvs.apache.org/viewcvs.cgi/httpd-2.0/server/protocol.c?r1=1.152&r2=1.153
+1: jorton, jerenkrantz, trawick
- *) Fix the global mutex crash when the global mutex is never allocated
- due to disabled/empty caches.
- modules/ldap/util_ldap.c: 1.13
- +1: minfrin, bnicholes, trawick
-
*) Fix a segfault in the LDAP cache purge. PR 24801
modules/ldap/util_ldap_cache_mgr.c: 1.9, 1.10
+1: minfrin, bnicholes
#endif
#define LDAP_CACHE_LOCK() \
- apr_global_mutex_lock(st->util_ldap_cache_lock)
+ if (st->util_ldap_cache_lock) \
+ apr_global_mutex_lock(st->util_ldap_cache_lock)
#define LDAP_CACHE_UNLOCK() \
- apr_global_mutex_unlock(st->util_ldap_cache_lock)
+ if (st->util_ldap_cache_lock) \
+ apr_global_mutex_unlock(st->util_ldap_cache_lock)
static void util_ldap_strdup (char **str, const char *newstr)