From: Brian Pane Date: Mon, 15 Apr 2002 23:43:04 +0000 (+0000) Subject: Fix an uninitialized variable X-Git-Tag: 2.0.36~188 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=7d3a437d82b3576e6c0f848a062c7d71bf6a18c2;p=apache Fix an uninitialized variable git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@94664 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/server/mpm/experimental/leader/leader.c b/server/mpm/experimental/leader/leader.c index a753012414..3dbd33e3d1 100644 --- a/server/mpm/experimental/leader/leader.c +++ b/server/mpm/experimental/leader/leader.c @@ -947,7 +947,7 @@ static void * APR_THREAD_FUNC start_threads(apr_thread_t *thd, void *dummy) idle_worker_stack = worker_stack_create(pchild, ap_threads_per_child); if (idle_worker_stack == NULL) { - ap_log_error(APLOG_MARK, APLOG_ALERT, rv, ap_server_conf, + ap_log_error(APLOG_MARK, APLOG_ALERT|APLOG_NOERRNO, 0, ap_server_conf, "worker_stack_create() failed"); clean_child_exit(APEXIT_CHILDFATAL); }