From: Jeff Trawick Date: Sat, 17 Nov 2001 14:09:14 +0000 (+0000) Subject: make sure ap_process_child_status() always returns something X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=cc96b6d4cc88c4d68dbecbaa45df4aeb477db5d8;p=apache make sure ap_process_child_status() always returns something git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@92020 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/server/mpm_common.c b/server/mpm_common.c index e353f1c321..55c0edd178 100644 --- a/server/mpm_common.c +++ b/server/mpm_common.c @@ -269,6 +269,7 @@ int ap_process_child_status(apr_proc_t *pid, apr_exit_why_e why, int status) } } } + return 0; } #endif /* AP_MPM_WANT_PROCESS_CHILD_STATUS */