From: Bart Polot Date: Wed, 26 Oct 2011 12:10:32 +0000 (+0000) Subject: Transformed assert into warning X-Git-Tag: initial-import-from-subversion-38251~16222 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=9a07ba196afb7c09422b0fa33071c4c42079f487;p=oweals%2Fgnunet.git Transformed assert into warning --- diff --git a/src/mesh/test_mesh_small.c b/src/mesh/test_mesh_small.c index 6545472c9..cf647be56 100644 --- a/src/mesh/test_mesh_small.c +++ b/src/mesh/test_mesh_small.c @@ -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]++;