Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Check return value of (v)asprintf.
[simgrid.git] / examples / gras / p2p / chord / chord.c
index debf98f..f70b5ce 100644 (file)
@@ -312,7 +312,7 @@ int node(int argc, char **argv)
   if (argc == 3) {
     create = 1;
   } else {
-    asprintf(&other_host, "%s", argv[3]);
+    other_host = xbt_strdup(argv[3]);
     other_port = atoi(argv[4]);
   }