From 9144fec263ed663b45011d81d65e7132d0791594 Mon Sep 17 00:00:00 2001 From: Joe Orton Date: Wed, 16 Mar 2011 15:53:34 +0000 Subject: [PATCH] * server/main.c (main): Use the real null cleanup callback. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1082170 13f79535-47bb-0310-9956-ffa450edef68 --- server/main.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/server/main.c b/server/main.c index 5c40a6bd86..b1f445f124 100644 --- a/server/main.c +++ b/server/main.c @@ -621,7 +621,7 @@ int main(int argc, const char * const argv[]) destroy_and_exit_process(process, 1); } apr_pool_cleanup_register(pconf, &ap_server_conf, ap_pool_cleanup_set_null, - NULL); + apr_pool_cleanup_null); apr_hook_sort_all(); if (ap_run_pre_config(pconf, plog, ptemp) != OK) { @@ -709,7 +709,7 @@ int main(int argc, const char * const argv[]) destroy_and_exit_process(process, 1); } apr_pool_cleanup_register(pconf, &ap_server_conf, - ap_pool_cleanup_set_null, NULL); + ap_pool_cleanup_set_null, apr_pool_cleanup_null); apr_hook_sort_all(); if (ap_run_pre_config(pconf, plog, ptemp) != OK) { -- 2.50.1