commit a061668b1a516dceb60b8157fe404a56cddf81d1 from: Alexander Barton date: Mon Apr 21 11:06:07 2003 UTC Added implicit initialisation of "i" in Conf_GetServer to workaround a egcs 2.91.66 bug which claims that this valiable could be used uninitialized. commit - 489d8c5cd0be81e39b3294385992f91986dfdf38 commit + a061668b1a516dceb60b8157fe404a56cddf81d1 blob - 9d6071e1e5c165c90a535b42450329a754e0dab3 blob + fe9fc80ebc2a426de87b106fe5d4d1ac1f57e035 --- src/ngircd/conf.c +++ src/ngircd/conf.c @@ -14,7 +14,7 @@ #include "portab.h" -static char UNUSED id[] = "$Id: conf.c,v 1.56 2003/04/20 23:09:43 alex Exp $"; +static char UNUSED id[] = "$Id: conf.c,v 1.57 2003/04/21 11:06:07 alex Exp $"; #include "imp.h" #include @@ -230,9 +230,9 @@ GLOBAL INT Conf_GetServer( CONN_ID Idx ) { /* Get index of server in configuration structure */ - - INT i; - + + INT i = 0; + assert( Idx > NONE ); for( i = 0; i < MAX_SERVERS; i++ )