--- trunk/subversion/libsvn_subr/config.c
+++ trunk/subversion/libsvn_subr/config.c
@@ -665,7 +665,7 @@
   apr_hash_index_t *sec_ndx;
   int count = 0;

-  for (sec_ndx = apr_hash_first (cfg->x_pool, cfg->sections);
+  for (sec_ndx = apr_hash_first (NULL, cfg->sections);
        sec_ndx != NULL;
        sec_ndx = apr_hash_next (sec_ndx))
     {
@@ -697,7 +697,7 @@
     return 0;

   count = 0;
-  for (opt_ndx = apr_hash_first (cfg->x_pool, sec->options);
+  for (opt_ndx = apr_hash_first (NULL, sec->options);
        opt_ndx != NULL;
        opt_ndx = apr_hash_next (opt_ndx))
     {


