From 9258e492721da6317fdb7986484ceabb87474755 Mon Sep 17 00:00:00 2001 From: Jeff Trawick Date: Sun, 25 Jun 2000 15:53:53 +0000 Subject: [PATCH] Quiet an unhelpful gcc warning which said that stat might be used before set. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@85689 13f79535-47bb-0310-9956-ffa450edef68 --- server/mpm/prefork/prefork.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/mpm/prefork/prefork.c b/server/mpm/prefork/prefork.c index 9d328ab605..6cff0ec7b6 100644 --- a/server/mpm/prefork/prefork.c +++ b/server/mpm/prefork/prefork.c @@ -760,7 +760,7 @@ static void child_main(int child_num_arg) ap_pool_t *ptrans; conn_rec *current_conn; ap_iol *iol; - ap_status_t stat; + ap_status_t stat = APR_SUCCESS; int sockdes; ap_my_pid = getpid(); -- 2.50.1