Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Don't leave field uninitialized.
authorArnaud Giersch <arnaud.giersch@univ-fcomte.fr>
Mon, 12 Mar 2018 14:53:27 +0000 (15:53 +0100)
committerArnaud Giersch <arnaud.giersch@univ-fcomte.fr>
Tue, 13 Mar 2018 12:28:26 +0000 (13:28 +0100)
src/kernel/routing/NetPoint.cpp

index 3670c70..d72d8b0 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (c) 2009-2017. The SimGrid Team. All rights reserved.          */
+/* Copyright (c) 2009-2018. 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. */
@@ -21,6 +21,8 @@ NetPoint::NetPoint(std::string name, NetPoint::Type componentType, NetZoneImpl*
 {
   if (netzone_p != nullptr)
     id_ = netzone_p->addComponent(this);
+  else
+    id_ = static_cast<decltype(id_)>(-1);
   simgrid::s4u::Engine::getInstance()->netpointRegister(this);
   simgrid::kernel::routing::NetPoint::onCreation(this);
 }