From 4cc0da2152dc3c02ac39158522a05ce908feb0ce Mon Sep 17 00:00:00 2001 From: Yann Ylavic Date: Thu, 18 Aug 2022 10:29:05 +0000 Subject: [PATCH] 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 --- server/util.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/util.c b/server/util.c index 4c8101e58c2..77c40956374 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(); -- 2.47.3