]> granicus.if.org Git - apache/commitdiff
Quiet an unhelpful gcc warning which said that stat might be
authorJeff Trawick <trawick@apache.org>
Sun, 25 Jun 2000 15:53:53 +0000 (15:53 +0000)
committerJeff Trawick <trawick@apache.org>
Sun, 25 Jun 2000 15:53:53 +0000 (15:53 +0000)
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

index 9d328ab605e64a7564255270e7500500fff4a8df..6cff0ec7b62d5a209e66da91ffe5b21e9402c574 100644 (file)
@@ -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();