Transformed assert into warning
authorBart Polot <bart@net.in.tum.de>
Wed, 26 Oct 2011 12:10:32 +0000 (12:10 +0000)
committerBart Polot <bart@net.in.tum.de>
Wed, 26 Oct 2011 12:10:32 +0000 (12:10 +0000)
src/mesh/test_mesh_small.c

index 6545472c9bf3323c0e54dd343954ecc7cafc2cad..cf647be566da213f95d8ec333540c553f4919087 100644 (file)
@@ -518,12 +518,12 @@ topo_cb (void *cls,
   if (p1 == pid1)
   {
     p2 = GNUNET_PEER_search(second);
-    GNUNET_assert(p2 < num_peers);
-    if (p2 == 0)
+    if (p2 == 0 || p2 > num_peers)
     {
       GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
-                  "***************** test: %s is UNKNOWN!?\n",
-                  GNUNET_i2s(second));
+                  "***************** test: %s is UNKNOWN!? (%u)\n",
+                  GNUNET_i2s(second),
+                  p2);
       return;
     }
     mesh_peers[p2]++;
@@ -536,12 +536,12 @@ topo_cb (void *cls,
   if (p1 == pid1)
   {
     p2 = GNUNET_PEER_search(first);
-    GNUNET_assert(p2 < num_peers);
-    if (p2 == 0)
+    if (p2 == 0 || p2 > num_peers)
     {
       GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
-                  "***************** test: %s is UNKNOWN!?\n",
-                  GNUNET_i2s(first));
+                  "***************** test: %s is UNKNOWN!? (%u)\n",
+                  GNUNET_i2s(first),
+                  p2);
       return;
     }
     mesh_peers[p2]++;