summaryrefslogtreecommitdiff
path: root/server
diff options
context:
space:
mode:
authorYann Ylavic <ylavic@apache.org>2022-08-18 10:29:05 +0000
committerYann Ylavic <ylavic@apache.org>2022-08-18 10:29:05 +0000
commit4cc0da2152dc3c02ac39158522a05ce908feb0ce (patch)
tree9dae9f6d650dd26c6a8ef98e8fd39ef23014864c /server
parentc726757fffdad7ab75ca6ee95c9dd084b16453d6 (diff)
downloadhttpd-4cc0da2152dc3c02ac39158522a05ce908feb0ce.tar.gz
core: Follow up to r1902728 and r1902909: Move comment where relevant.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1903522 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'server')
-rw-r--r--server/util.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/server/util.c b/server/util.c
index 4c8101e58c..77c4095637 100644
--- a/server/util.c
+++ b/server/util.c
@@ -3385,12 +3385,12 @@ AP_DECLARE(apr_status_t) ap_thread_current_create(apr_thread_t **current,
abort_fn(rv);
return rv;
}
+ /* Don't let the thread's pool allocator with no limits */
apr_allocator_max_free_set(ta, ap_max_mem_free);
rv = apr_pool_create_unmanaged_ex(&p, abort_fn, ta);
if (rv != APR_SUCCESS) {
return rv;
}
- /* Don't let the thread's pool allocator with no limits */
apr_allocator_owner_set(ta, p);
osthd = apr_os_thread_current();