Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
port to alpha
[simgrid.git] / testsuite / gras / trp_tcp_client.c
index bddff1a..5eb465f 100644 (file)
@@ -20,6 +20,9 @@ int main(int argc,char *argv[]) {
   char data_send[256];
   char data_recv[256];
 
+  memset(data_send, 0, sizeof(data_send));
+  memset(data_recv, 0, sizeof(data_recv));
+
   gras_init_defaultlog(&argc,argv,"trp.thresh=debug");
 
   fprintf(stderr,"===[CLIENT]=== Contact the server\n");
@@ -38,7 +41,7 @@ int main(int argc,char *argv[]) {
   fprintf(stderr,"===[CLIENT]=== Got a valid ACK\n");
   
   fprintf(stderr,"===[CLIENT]=== Exiting successfully\n");
-  gras_socket_close(&sock);
+  gras_socket_close(sock);
    
   gras_exit();
   return 0;