summaryrefslogtreecommitdiff
path: root/tables/apr_hash.c
diff options
context:
space:
mode:
Diffstat (limited to 'tables/apr_hash.c')
-rw-r--r--tables/apr_hash.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tables/apr_hash.c b/tables/apr_hash.c
index b21c5f33c..7871b3d20 100644
--- a/tables/apr_hash.c
+++ b/tables/apr_hash.c
@@ -155,10 +155,10 @@ APR_DECLARE(apr_hash_index_t *) apr_hash_next(apr_hash_index_t *hi)
return hi;
}
-APR_DECLARE(apr_hash_index_t *) apr_hash_first(apr_hash_t *ht)
+APR_DECLARE(apr_hash_index_t *) apr_hash_first(apr_pool_t *p, apr_hash_t *ht)
{
apr_hash_index_t *hi;
- hi = apr_palloc(ht->pool, sizeof(*hi));
+ hi = apr_palloc(p, sizeof(*hi));
hi->ht = ht;
hi->index = 0;
hi->this = NULL;