Author: wrowe
Date: Mon Oct 25 14:37:23 2004
New Revision: 55533

Modified:
   incubator/httpd/cli/trunk/mod_aspdotnet/mod/mod_aspdotnet.cpp
Log:

  Solve a slow irritating leak, iterators for the request should
  be allocated from the request pool, not the conf pool!

Submitted by: Larry Toppi <larry.toppi citrix.com>

Modified: incubator/httpd/cli/trunk/mod_aspdotnet/mod/mod_aspdotnet.cpp
==============================================================================
--- incubator/httpd/cli/trunk/mod_aspdotnet/mod/mod_aspdotnet.cpp       
(original)
+++ incubator/httpd/cli/trunk/mod_aspdotnet/mod/mod_aspdotnet.cpp       Mon Oct 
25 14:37:23 2004
@@ -436,7 +436,7 @@
 
     asp_net_host_conf_t *host = NULL;
     apr_hash_index_t *item;
-    for (item = apr_hash_first(conf->pool, sconf->aliases); item; 
+    for (item = apr_hash_first(r->pool, sconf->aliases); item; 
             item = apr_hash_next(item)) 
     {
         asp_net_alias_t *alias;

Reply via email to