From: Bart Polot Date: Wed, 30 Nov 2011 10:32:31 +0000 (+0000) Subject: - Fixed an insufficient allocation, probably causing OS X crashes X-Git-Tag: initial-import-from-subversion-38251~15740 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=2121baf90b5f9885ade6d95b440f8276a0e76199;p=oweals%2Fgnunet.git - Fixed an insufficient allocation, probably causing OS X crashes --- diff --git a/src/mesh/test_mesh_tree_api.c b/src/mesh/test_mesh_tree_api.c index 60e31bdde..1d43135e4 100644 --- a/src/mesh/test_mesh_tree_api.c +++ b/src/mesh/test_mesh_tree_api.c @@ -170,7 +170,7 @@ main (int argc, char *argv[]) } tree = tree_new (1); tree->me = tree->root; - path = path_new (4); + path = path_new (5); path->peers[0] = 1; path->peers[1] = 2; path->peers[2] = 3;