You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by yl...@apache.org on 2022/08/18 10:29:06 UTC

svn commit: r1903522 - /httpd/httpd/trunk/server/util.c

Author: ylavic
Date: Thu Aug 18 10:29:05 2022
New Revision: 1903522

URL: http://svn.apache.org/viewvc?rev=1903522&view=rev
Log:
core: Follow up to r1902728 and r1902909: Move comment where relevant.


Modified:
    httpd/httpd/trunk/server/util.c

Modified: httpd/httpd/trunk/server/util.c
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/server/util.c?rev=1903522&r1=1903521&r2=1903522&view=diff
==============================================================================
--- httpd/httpd/trunk/server/util.c (original)
+++ httpd/httpd/trunk/server/util.c Thu Aug 18 10:29:05 2022
@@ -3385,12 +3385,12 @@ AP_DECLARE(apr_status_t) ap_thread_curre
             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();