From: Jeff Trawick Date: Sun, 25 Jun 2000 15:53:53 +0000 (+0000) Subject: Quiet an unhelpful gcc warning which said that stat might be X-Git-Tag: APACHE_2_0_ALPHA_5~247 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=9258e492721da6317fdb7986484ceabb87474755;p=apache 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 --- 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();