diff options
author | Adam Ierymenko <adam.ierymenko@gmail.com> | 2015-10-30 14:23:28 -0700 |
---|---|---|
committer | Adam Ierymenko <adam.ierymenko@gmail.com> | 2015-10-30 14:23:28 -0700 |
commit | 7382c328daa33b5ff21baf78ee022f23092cda3b (patch) | |
tree | 8752a965f688596fbaf0faeaa1405d6cf2c77723 | |
parent | 641b0dec44d641f6b21c67d5807418d9c89e4033 (diff) | |
download | infinitytier-7382c328daa33b5ff21baf78ee022f23092cda3b.tar.gz infinitytier-7382c328daa33b5ff21baf78ee022f23092cda3b.zip |
Null pointer bug appears fixed... testing again at large scale.
-rw-r--r-- | node/Topology.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/node/Topology.hpp b/node/Topology.hpp index f48a89b2..f7804c29 100644 --- a/node/Topology.hpp +++ b/node/Topology.hpp @@ -237,7 +237,7 @@ public: while (i.next(a,p)) { #ifdef ZT_TRACE if (!(*p)) { - fprintf(stderr,"eachPeer() caught NULL peer for %s",a->toString().c_str()); + fprintf(stderr,"FATAL BUG: eachPeer() caught NULL peer for %s -- peer pointers in Topology should NEVER be NULL",a->toString().c_str()); abort(); } #endif |