]> granicus.if.org Git - apache/commitdiff
Fix an uninitialized variable
authorBrian Pane <brianp@apache.org>
Mon, 15 Apr 2002 23:43:04 +0000 (23:43 +0000)
committerBrian Pane <brianp@apache.org>
Mon, 15 Apr 2002 23:43:04 +0000 (23:43 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@94664 13f79535-47bb-0310-9956-ffa450edef68

server/mpm/experimental/leader/leader.c

index a753012414f81dc4636890d13b0af303f2803c33..3dbd33e3d19e49a7519ccb6b134a7e904d8ed5af 100644 (file)
@@ -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);
     }