Allowed to destroy NULL paths
[oweals/gnunet.git] / src / mesh / test_mesh_small.c
index e77ddcf15c7d1ee8764b2b737458bdd1fedeefea..cf647be566da213f95d8ec333540c553f4919087 100644 (file)
@@ -518,13 +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));
-      GNUNET_break (0);
+                  "***************** test: %s is UNKNOWN!? (%u)\n",
+                  GNUNET_i2s(second),
+                  p2);
       return;
     }
     mesh_peers[p2]++;
@@ -537,8 +536,14 @@ topo_cb (void *cls,
   if (p1 == pid1)
   {
     p2 = GNUNET_PEER_search(first);
-    GNUNET_assert(p2 < num_peers);
-    GNUNET_assert(p2 > 0);
+    if (p2 == 0 || p2 > num_peers)
+    {
+      GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
+                  "***************** test: %s is UNKNOWN!? (%u)\n",
+                  GNUNET_i2s(first),
+                  p2);
+      return;
+    }
     mesh_peers[p2]++;
     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
                 "***************** test: %s IS a neighbor\n",