Commit 35be1200 authored by William A. Rowe Jr's avatar William A. Rowe Jr
Browse files

  Debug conf pool constness.  This is a noop most of the time on most
  platforms, but it's only called twice per restart, so this is mostly
  harmless.


git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@91178 13f79535-47bb-0310-9956-ffa450edef68
parent ee893053
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -425,11 +425,14 @@ int main(int argc, const char * const argv[])
	ap_run_open_logs(pconf, plog, ptemp, server_conf);
	ap_run_post_config(pconf, plog, ptemp, server_conf);
	apr_pool_destroy(ptemp);
	apr_pool_lock(pconf, 1);

	ap_run_optional_fn_retrieve();

	if (ap_mpm_run(pconf, plog, server_conf)) break;
	apr_pool_lock(pconf, 0);
    }
    apr_pool_lock(pconf, 0);
    destroy_and_exit_process(process, 0);
    return 0; /* Supress compiler warning. */
}