clarify part of this backport from 10 days ago:
http://svn.apache.org/viewcvs.cgi?rev=390548&view=rev
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.2.x@393120
13f79535-47bb-0310-9956-
ffa450edef68
util_ldap_state_t *st =
(util_ldap_state_t *)apr_pcalloc(p, sizeof(util_ldap_state_t));
- /* Create a pool for mod_ldap to use */
+ /* Create a per vhost pool for mod_ldap to use, serialized with
+ * st->mutex (also one per vhost)
+ */
apr_pool_create(&st->pool, p);
#if APR_HAS_THREADS
apr_thread_mutex_create(&st->mutex, APR_THREAD_MUTEX_DEFAULT, st->pool);