]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
core: Follow up to r1902728 and r1902909: Move comment where relevant.
authorYann Ylavic <ylavic@apache.org>
Thu, 18 Aug 2022 10:29:05 +0000 (10:29 +0000)
committerYann Ylavic <ylavic@apache.org>
Thu, 18 Aug 2022 10:29:05 +0000 (10:29 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1903522 13f79535-47bb-0310-9956-ffa450edef68

server/util.c

index 4c8101e58c231ca4db64c71a21fb33682ff44a30..77c40956374bc9b9043a072f85882bcc844bf535 100644 (file)
@@ -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();