Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Update copyright lines.
[simgrid.git] / examples / smpi / ampi_test / ampi_test.cpp
index bc02cadd84cb980d241f8e4da9baed309c7c3180..e9e25d31ed0237b0cf96fb7c4688f14f7661847d 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (c) 2009-2020. The SimGrid Team. All rights reserved.          */
+/* Copyright (c) 2009-2021. The SimGrid Team. All rights reserved.          */
 
 /* This program is free software; you can redistribute it and/or modify it
  * under the terms of the license (GNU LGPL) which comes with this package. */
@@ -12,8 +12,11 @@ int main(int argc, char* argv[])
   MPI_Init(&argc, &argv);
   // useless alocations for testing and coverage
   void* pointer = malloc(100 * sizeof(int));
-  pointer       = realloc(pointer, 50 * sizeof(int));
-  pointer       = realloc(pointer, 200 * sizeof(int));
+  void* ptmp;
+  if ((ptmp = realloc(pointer, 50 * sizeof(int))) != nullptr)
+    pointer = ptmp;
+  if ((ptmp = realloc(pointer, 200 * sizeof(int))) != nullptr)
+    pointer = ptmp;
   free(pointer);
   pointer = calloc(100, sizeof(int));
   int rank;