Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
avoid unitialized use
authorAugustin Degomme <degomme@idpann.imag.fr>
Tue, 9 Apr 2013 08:08:44 +0000 (10:08 +0200)
committerAugustin Degomme <degomme@idpann.imag.fr>
Tue, 9 Apr 2013 10:00:52 +0000 (12:00 +0200)
teshsuite/smpi/mpich-test/env/gtime.c

index e755aef..4e3d33f 100644 (file)
@@ -80,7 +80,7 @@ int main( int argc, char **argv )
 {
     int    err = 0;
     void *v;
-    int  flag;
+    int  flag=0;
     int  vval;
     int  rank;
     double t1;