From: Yann Ylavic Date: Thu, 18 Aug 2022 10:29:05 +0000 (+0000) Subject: core: Follow up to r1902728 and r1902909: Move comment where relevant. X-Git-Tag: 2.5.0-alpha2-ci-test-only~253 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4cc0da2152dc3c02ac39158522a05ce908feb0ce;p=thirdparty%2Fapache%2Fhttpd.git 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 --- 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();