From: Joe Orton Date: Wed, 16 Mar 2011 15:53:34 +0000 (+0000) Subject: * server/main.c (main): Use the real null cleanup callback. X-Git-Tag: 2.3.12~223 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9144fec263ed663b45011d81d65e7132d0791594;p=thirdparty%2Fapache%2Fhttpd.git * 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 --- diff --git a/server/main.c b/server/main.c index 5c40a6bd861..b1f445f124c 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) {